/* ===== News Page Styles ===== */
/* News Hero */
.news-hero {
  max-height: 362px;
  min-height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.news-hero-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin: 0 0 24px;
}

.news-hero-title .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
}

.news-hero-title .hero-main {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: white;
  letter-spacing: 0.05em;
  line-height: 1;
}

.news-hero-lead {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: white;
  margin: 0;
  font-weight: 500;
  line-height: 1.8;
}

/* News Filter Section */
.news-filter-section {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.news-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 2px solid var(--border);
  border-radius: 60px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted-foreground);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: color-mix(in oklch, var(--primary), transparent 95%);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* News List Section */
.news-list-section {
  padding: 80px 0 120px;
  background: #fafafa;
}

.news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* News Item */
.news-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.news-item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.news-item:hover .news-item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.news-item-link {
  text-decoration: none;
  color: inherit;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 400px 1fr;
      grid-template-columns: 400px 1fr;
  gap: 0;
}

@media (max-width: 1024px) {
  .news-item-link {
    -ms-grid-columns: 300px 1fr;
        grid-template-columns: 300px 1fr;
  }
}

@media (max-width: 768px) {
  .news-item-link {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.news-item-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  overflow: hidden;
}

.news-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

@media (max-width: 768px) {
  .news-item-image {
    height: 240px;
  }
}

.news-item-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-item-category.press {
  background: #ff6b6b;
  color: white;
}

.news-item-category.news {
  background: #4ecdc4;
  color: white;
}

.news-item-category.media {
  background: #95e1d3;
  color: #1a535c;
}

.news-item-category.event {
  background: #ffd93d;
  color: #4a4a4a;
}

.news-item-content {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1024px) {
  .news-item-content {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .news-item-content {
    padding: 28px;
  }
}

.news-item-date {
  font-size: 0.875rem;
  color: #000;
  font-weight: 600;
}

.news-item-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  color: var(--foreground);
}

.news-item-excerpt {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #000;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pagination */
.news-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 80px;
}

.pagination-btn,
.pagination-number {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid var(--border);
  background: white;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
  color: var(--foreground);
}

.pagination-btn:hover:not(:disabled),
.pagination-number:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
  background: color-mix(in oklch, var(--primary), transparent 95%);
}

.pagination-btn:disabled,
.pagination-number:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination-btn.active,
.pagination-number.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.pagination-dots {
  color: var(--muted-foreground);
  padding: 0 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .news-filter {
    overflow-x: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-bottom: 8px;
    gap: 10px 4px;
  }
  .news-filter::-webkit-scrollbar {
    height: 4px;
  }
  .news-filter::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
  }
  .filter-btn {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 8px 20px;
    font-size: 0.875rem;
  }
  .news-item-content {
    padding: 20px;
  }
}

/* Recruit Banner Section */
.recruit-banner {
  position: relative;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .recruit-banner {
    border-radius: 16px;
    min-height: 300px;
  }
}

.recruit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.recruit-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.recruit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.92) 0%, rgba(59, 130, 246, 0.88) 50%, rgba(37, 99, 235, 0.9) 100%);
  z-index: 1;
}

.recruit-content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  text-align: center;
  padding: 48px;
}

@media (max-width: 768px) {
  .recruit-content {
    padding: 32px 24px;
    gap: 20px;
  }
}

.recruit-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: white;
  margin: 0;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.recruit-sub {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.1em;
}

.recruit-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
}

@media (max-width: 640px) {
  .recruit-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
}

.recruit-actions .btn {
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 60px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .recruit-actions .btn {
    width: 100%;
    padding: 20px 32px;
  }
}

.recruit-actions .btn.primary {
  background: white;
  color: var(--primary);
  -webkit-box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
          box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.recruit-actions .btn.primary:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
          box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

.recruit-actions .btn.outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.recruit-actions .btn.outline:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
          box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.recruit-actions .btn.pill {
  border-radius: 60px;
}

.recruit-actions .btn.lg {
  padding: 18px 40px;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .recruit-actions .btn.lg {
    padding: 20px 32px;
  }
}
/*# sourceMappingURL=news.css.map */