/* Press Center Section */
.press-center {
    padding: 100px 0;
    background-color: var(--dark-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.press-center .section-title {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.press-tabs {
    margin-bottom: 60px;
}

.press-tabs .nav-tabs {
    border: none;
    gap: 30px;
}

.press-tabs .nav-item {
    width: -moz-fit-content;
    width: fit-content;
    transition: transform 0.3s ease;
}

.press-tabs .nav-item:hover {
    transform: translateY(-3px);
}

.press-tabs .nav-link {
  color: var(--text-color); /* White by default */
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
}

.press-tabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.press-tabs .nav-link:hover {
  color: var(--secondary-color); /* Blue on hover */
}

.press-tabs .nav-link:hover::before {
  opacity: 0; /* Hide bracket */
}

.press-tabs .nav-link:hover::after {
  transform: scaleX(0); /* Hide underline */
}

.press-tabs .nav-link.active {
  color: var(--secondary-color); /* Active tab blue */
  background: none;
  font-weight: 500;
}

.press-tabs .nav-link:hover::after {
    transform: scaleX(0);
}

.press-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
}

.press-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.press-card:first-child {
    grid-row: span 2;
}

.press-card:not(:first-child) .press-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 6, 43, 0.9), transparent);
}

.press-card:not(:first-child) .press-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: none;
}

.press-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.press-image {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    flex-shrink: 0;
}

.press-card:first-child .press-image {
    padding-bottom: 66%;
}


.press-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.press-card:hover .press-image img {
    transform: scale(1.05);
}

.press-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.press-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.press-source {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991.98px) {
    .press-center .section-title {
        font-size: 3.2rem;
    }

    .press-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .press-card:first-child {
        grid-row: auto;
    }

    .press-info {
        padding: 20px;
    }

    .press-info h3 {
        font-size: 1.3rem;
    }

    .press-card.large .press-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .press-center .section-title {
        font-size: 2.8rem;
    }

    .press-grid {
        grid-template-columns: 1fr;
    }

    .press-card.large {
        grid-column: span 1;
    }

    .press-info h3,
    .press-card.large .press-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .press-center .section-title {
        font-size: 2.4rem;
    }

    .press-tabs .nav-tabs {
        gap: 20px;
    }

    .press-info {
        padding: 15px;
    }

    .press-info h3,
    .press-card.large .press-info h3 {
        font-size: 1.2rem;
    }
} 