/* Internships Container */
.ft-internships {
  margin: 1.5rem 0;
}

/* Title */
.ft-internships__title {
  font-size: 2rem;
  font-weight: 700;
  color: #3d4ba8;
  text-align: center;
  margin: 0 0 2rem 0;
  padding: 0;
}

/* Grid - 4 columns compact */
.ft-internships__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Item Container */
.ft-internships__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

/* Image Container - Compact */
.ft-internships__image-container {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

/* Image - Constrained */
.ft-internships__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-width: 50px;
  max-height: 50px;
}

/* Icon SVG - Constrained */
.ft-internships__icon-svg {
  width: 50px;
  height: 50px;
  color: #000;
  fill: currentColor;
  flex-shrink: 0;
}

/* Organization Name */
.ft-internships__organization {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  word-break: break-word;
}

/* ===== RESPONSIVE ===== */

/* Large: 1400px+ */
@media (min-width: 1400px) {
  .ft-internships__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.75rem 2.5rem;
  }

  .ft-internships__image-container {
    width: 55px;
    height: 55px;
  }

  .ft-internships__image {
    max-width: 55px;
    max-height: 55px;
  }

  .ft-internships__icon-svg {
    width: 55px;
    height: 55px;
  }

  .ft-internships__organization {
    font-size: 0.95rem;
  }
}

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .ft-internships__title {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .ft-internships__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem 1.75rem;
  }

  .ft-internships__organization {
    font-size: 0.85rem;
  }
}

/* Tablet: 768px */
@media (max-width: 768px) {
  .ft-internships__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .ft-internships__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem 1.5rem;
    padding: 0 1rem;
  }

  .ft-internships__image-container {
    width: 48px;
    height: 48px;
  }

  .ft-internships__image {
    max-width: 48px;
    max-height: 48px;
  }

  .ft-internships__icon-svg {
    width: 48px;
    height: 48px;
  }

  .ft-internships__organization {
    font-size: 0.8rem;
  }
}

/* Mobile: 600px */
@media (max-width: 600px) {
  .ft-internships {
    margin: 1.25rem 0;
  }

  .ft-internships__title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .ft-internships__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.25rem;
    padding: 0 0.75rem;
  }

  .ft-internships__image-container {
    width: 45px;
    height: 45px;
  }

  .ft-internships__image {
    max-width: 45px;
    max-height: 45px;
  }

  .ft-internships__icon-svg {
    width: 45px;
    height: 45px;
  }

  .ft-internships__item {
    gap: 0.6rem;
  }

  .ft-internships__organization {
    font-size: 0.75rem;
    line-height: 1.25;
  }
}

/* Mobile: 480px */
@media (max-width: 480px) {
  .ft-internships__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .ft-internships__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem 1rem;
    padding: 0 0.5rem;
  }

  .ft-internships__image-container {
    width: 40px;
    height: 40px;
  }

  .ft-internships__image {
    max-width: 40px;
    max-height: 40px;
  }

  .ft-internships__icon-svg {
    width: 40px;
    height: 40px;
  }

  .ft-internships__organization {
    font-size: 0.7rem;
  }
}

/* Mobile: 360px */
@media (max-width: 360px) {
  .ft-internships__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 0.875rem;
  }

  .ft-internships__image-container {
    width: 38px;
    height: 38px;
  }

  .ft-internships__image {
    max-width: 38px;
    max-height: 38px;
  }

  .ft-internships__icon-svg {
    width: 38px;
    height: 38px;
  }

  .ft-internships__organization {
    font-size: 0.65rem;
  }
}
