/* General body styling */
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  text-align: left;
}

/* Layout: image on left, content on right */
.layout {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  flex-wrap: wrap;    /* allows stacking on small screens */
  gap: 20px;
}

/* Responsive image */
.header-img {
  width: clamp(360px, 48vw, 1100px); /* responsive scaling */
  max-width: none;                   /* remove 120px cap */
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
  flex-shrink: 0;
}

/* Content section */
.content {
  flex: 1;
  max-width: 900px;
}

/* Objective section text is justified */
.justified {
  text-align: justify;
}

/* Section spacing */
section {
  margin-bottom: 28px;
}

/* Lists */
ul {
  padding-left: 1.25rem;
  list-style: disc outside;
}

/* Call-to-action link (Resume button) */
.cta-link {
  display: inline-block;
  font-weight: 900;
  font-size: 1.35rem;
  text-decoration: none;
  background: #D32431; /* Amaranth red background */
  color: #ffffff;      /* white text */
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.cta-link:hover {
  filter: brightness(0.95);
}
