/* Merged hero + about layout */
.about-inline h3 {
  font-size: clamp(24px, 4vw, 40px);
  margin-bottom: 1rem;
}

.about-inline-content {
  opacity: 0.85;
  line-height: 1.8;
}

/* Align Resume button and social icons on the same baseline */
#hero .row .col-auto {
  display: flex;
  align-items: center;
}

/* Project card — carousel media */
.project-media-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--secondary-color, #132033);
}


/* prevent the theme's hover zoom on carousel images */
#projects .card:hover .project-media-img {
  transform: none !important;
  transition: none !important;
}

/* arrow buttons sit outside the carousel, no overlap with media */
.project-media-row {
  background: transparent;
}

.media-arrow {
  width: 44px;
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: var(--text-color, #c9d1d9);
  font-size: 1.1rem;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-arrow:hover {
  opacity: 1;
}
