/* Intern Corner Page Styles */

/* =================================================================
   INTERN HERO SECTION STYLES
   ================================================================= */

.intern-hero-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
  background: #fff;
  text-align: left;
}

.intern-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.intern-hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 48px;
  color: #023E8A;
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-align: left;
}

.intern-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: regular;
  font-size: 20px;
  color: #000000;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 0 20px 0;
  text-align: left;
}

/* =================================================================
   FEATURED INTERN SECTION STYLES
   ================================================================= */

.featured-intern-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
  background: #fff;
}

.featured-intern-container {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-intern-title {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 40px;
  color: #023E8A;
  text-align: left;
  margin: 0 0 40px 0;
}

.featured-intern-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  height: 500px;
}

.featured-story-large {
  grid-row: 1 / 3;
}

.featured-story-medium {
  height: 238px;
}

.story-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.story-content {
  color: white;
  width: 100%;
}

.story-category {
  font-family: 'Inter', sans-serif;
  font-weight: medium;
  font-size: 14px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.story-title {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: white;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.featured-story-large .story-title {
  font-size: 28px;
}

.story-excerpt {
  font-family: 'Inter', sans-serif;
  font-weight: regular;
  font-size: 16px;
  color: white;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.story-btn {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: medium;
  cursor: pointer;
  transition: all 0.3s ease;
}

.story-btn:hover {
  background: white;
  color: #023E8A;
}

/* =================================================================
   INTERN STORIES SECTION STYLES
   ================================================================= */

.intern-stories-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
  background: #F8FCFF;
}

.intern-stories-container {
  max-width: 1200px;
  margin: 0 auto;
}

.intern-stories-title {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 36px;
  color: #023E8A;
  text-align: left;
  margin: 0 0 32px 0;
}

.story-filters {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  color: #023E8A;
  border: 1px solid #023E8A;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: medium;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #023E8A;
  color: white;
}

.intern-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.intern-story-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intern-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.story-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.intern-story-card:hover .card-img {
  transform: scale(1.05);
}

.story-card-content {
  padding: 20px;
}

.story-card-category {
  font-family: 'Inter', sans-serif;
  font-weight: medium;
  font-size: 12px;
  color: #7B1A2D;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.story-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #023E8A;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.story-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-weight: regular;
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card-btn {
  background: transparent;
  color: #7B1A2D;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: medium;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.story-card-btn:hover {
  color: #5E1421;
  text-decoration: underline;
}

/* =================================================================
   INTERNSHIP OPPORTUNITIES SECTION STYLES
   ================================================================= */

.internship-opportunities-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
  background: #023E8A;
  text-align: left;
}

.internship-opportunities-container {
  max-width: 800px;
  margin: 0 auto;
}

.internship-opportunities-title {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 36px;
  color: white;
  margin: 0 0 24px 0;
}

.internship-opportunities-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: regular;
  font-size: 18px;
  color: white;
  line-height: 1.5;
  margin: 0 0 32px 0;
}

.internship-cta-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: #7B1A2D;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: medium;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn-primary:hover {
  background: #5E1421;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 26, 45, 0.3);
}

.cta-btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: medium;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background: white;
  color: #023E8A;
  transform: translateY(-2px);
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

/* Tablet Styles */
@media (max-width: 1279px) {
  .intern-hero-title {
    font-size: 42px;
  }
  
  .featured-intern-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  
  .featured-story-large {
    grid-row: auto;
    height: 400px;
  }
  
  .featured-story-medium {
    height: 300px;
  }
  
  .intern-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .intern-hero-section,
  .featured-intern-section,
  .intern-stories-section,
  .internship-opportunities-section {
    padding: 60px 20px;
  }
  
  .intern-hero-title {
    font-size: 36px;
  }
  
  .intern-hero-subtitle {
    font-size: 18px;
  }
  
  .featured-intern-title,
  .intern-stories-title,
  .internship-opportunities-title {
    font-size: 32px;
  }
  
  .featured-intern-grid {
    gap: 16px;
  }
  
  .featured-story-large,
  .featured-story-medium {
    height: 250px;
  }
  
  .story-title {
    font-size: 20px;
  }
  
  .featured-story-large .story-title {
    font-size: 24px;
  }
  
  .story-excerpt {
    font-size: 14px;
  }
  
  .story-filters {
    gap: 12px;
  }
  
  .filter-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .intern-stories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .story-card-content {
    padding: 16px;
  }
  
  .story-card-title {
    font-size: 18px;
  }
  
  .story-card-excerpt {
    font-size: 13px;
  }
  
  .internship-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .intern-hero-section,
  .featured-intern-section,
  .intern-stories-section,
  .internship-opportunities-section {
    padding: 40px 15px;
  }
  
  .intern-hero-title {
    font-size: 28px;
  }
  
  .intern-hero-subtitle {
    font-size: 16px;
  }
  
  .featured-intern-title,
  .intern-stories-title,
  .internship-opportunities-title {
    font-size: 28px;
  }
  
  .featured-story-large,
  .featured-story-medium {
    height: 200px;
  }
  
  .story-overlay {
    padding: 16px;
  }
  
  .story-title {
    font-size: 18px;
  }
  
  .featured-story-large .story-title {
    font-size: 20px;
  }
  
  .story-excerpt {
    font-size: 13px;
  }
  
  .story-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .story-filters {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 5px 10px;
    font-size: 12px;
  }
  
  .story-card-content {
    padding: 12px;
  }
  
  .story-card-title {
    font-size: 16px;
  }
  
  .story-card-excerpt {
    font-size: 12px;
  }
  
  .internship-opportunities-subtitle {
    font-size: 16px;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}
