/* Newsroom Page Styles */

/* Newsroom Hero Section */
.newsroom-hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, var(--color-navy) 0%, #0a2d5f 100%);
    position: relative;
    overflow: hidden;
}

.newsroom-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 145, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.newsroom-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 215, 113, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsroom-hero-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 1;
}

.newsroom-hero-content {
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.newsroom-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 145, 68, 0.2);
    border: 1px solid rgba(0, 145, 68, 0.3);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.newsroom-hero-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .newsroom-hero-title {
        font-size: 3.5rem;
    }
}

.newsroom-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .newsroom-hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Featured News Section */
.newsroom-featured-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--color-light) 100%);
}

.newsroom-featured-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.newsroom-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.newsroom-section-title {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .newsroom-section-title {
        font-size: 2.5rem;
    }
}

.newsroom-section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.featured-news-card {
    background: #ffffff;
    border: 2px solid rgba(0, 145, 68, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .featured-news-card {
        grid-template-columns: 1.2fr 1fr;
    }
}

.featured-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.featured-news-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    min-height: 300px;
}

@media (min-width: 1024px) {
    .featured-news-image {
        min-height: auto;
    }
}

.featured-news-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(0, 145, 68, 0.8) 0%, rgba(251, 215, 113, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.featured-news-image-placeholder::before {
    content: '📰';
    font-size: 4rem;
    opacity: 0.3;
}

.featured-news-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.featured-news-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .featured-news-content {
        padding: 3rem;
    }
}

.featured-news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.news-category {
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(0, 145, 68, 0.1) 0%, rgba(0, 145, 68, 0.05) 100%);
    border: 1px solid rgba(0, 145, 68, 0.2);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.news-date {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.featured-news-title {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .featured-news-title {
        font-size: 2rem;
    }
}

.featured-news-excerpt {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.featured-news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    width: fit-content;
}

.featured-news-link:hover {
    color: var(--color-navy);
    gap: 0.75rem;
}

/* News Filter Section */
.newsroom-filter-section {
    padding: 2rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 75px;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.newsroom-filter-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.newsroom-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.news-filter-btn {
    padding: 0.625rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 2rem;
    background: #ffffff;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.news-filter-btn-active {
    background: linear-gradient(135deg, var(--color-primary) 0%, #007a3a 100%);
    border-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 145, 68, 0.3);
}

.news-filter-btn-active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(0, 145, 68, 0.4);
}

/* News Grid Section */
.newsroom-news-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--color-light) 0%, #ffffff 100%);
}

.newsroom-news-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--color-primary);
}

.news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
}

.news-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 145, 68, 0.1) 0%, rgba(251, 215, 113, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-card-image-placeholder::before {
    content: '📄';
    font-size: 3rem;
    opacity: 0.3;
}

.news-card-image-placeholder.product-bg {
    background: linear-gradient(135deg, rgba(251, 215, 113, 0.15) 0%, rgba(251, 215, 113, 0.05) 100%);
}

.news-card-image-placeholder.press-bg {
    background: linear-gradient(135deg, rgba(4, 30, 66, 0.15) 0%, rgba(4, 30, 66, 0.05) 100%);
}

.news-card-image-placeholder.insights-bg {
    background: linear-gradient(135deg, rgba(0, 145, 68, 0.15) 0%, rgba(251, 215, 113, 0.1) 100%);
}

.news-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-heading);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-card-badge.product-badge {
    color: #d97706;
}

.news-card-badge.press-badge {
    color: var(--color-navy);
}

.news-card-badge.insights-badge {
    color: var(--color-primary);
}

.news-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.news-card-date,
.news-card-read-time {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.news-card-title {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.news-card-excerpt {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.625;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: auto;
}

.news-card-link:hover {
    color: var(--color-navy);
    gap: 0.75rem;
}

/* Press Releases Section */
.newsroom-press-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-navy) 0%, #020a1a 100%);
    position: relative;
    overflow: hidden;
}

.newsroom-press-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 145, 68, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsroom-press-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 1;
}

.press-releases-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.press-release-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .press-release-item {
        padding: 2.5rem;
    }
}

.press-release-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    transform: translateX(8px);
}

.press-release-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 1rem;
    background: rgba(0, 145, 68, 0.2);
    border-radius: 1rem;
    border: 1px solid rgba(0, 145, 68, 0.3);
}

.press-release-day {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
}

.press-release-month {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.press-release-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.press-release-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.press-release-excerpt {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
}

.press-release-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 0.5rem;
}

.press-release-link:hover {
    color: #ffffff;
    gap: 0.75rem;
}

/* Media Kit Section */
.newsroom-media-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--color-light) 100%);
}

.newsroom-media-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.media-kit-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-light) 100%);
    border: 2px solid rgba(0, 145, 68, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .media-kit-card {
        padding: 4rem;
    }
}

.media-kit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.media-kit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.media-kit-title {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.media-kit-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.media-kit-downloads {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .media-kit-downloads {
        flex-direction: row;
        justify-content: center;
    }
}

.media-kit-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #007a3a 100%);
    color: #ffffff;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 145, 68, 0.3);
}

.media-kit-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 145, 68, 0.4);
    background: linear-gradient(135deg, #007a3a 0%, var(--color-primary) 100%);
}

.download-icon {
    font-size: 1.25rem;
}

/* Newsletter Section */
.newsroom-newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #007a3a 100%);
    position: relative;
    overflow: hidden;
}

.newsroom-newsletter-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsroom-newsletter-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 1;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .newsletter-card {
        padding: 4rem;
    }
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.newsletter-title {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--color-dark);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 145, 68, 0.1);
}

.newsletter-submit {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #007a3a 100%);
    color: #ffffff;
    border: none;
    border-radius: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 145, 68, 0.3);
    white-space: nowrap;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 145, 68, 0.4);
    background: linear-gradient(135deg, #007a3a 0%, var(--color-primary) 100%);
}

/* Contact Media Section */
.newsroom-contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-light) 0%, #ffffff 100%);
}

.newsroom-contact-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.media-contact-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-light) 100%);
    border: 2px solid rgba(0, 145, 68, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .media-contact-card {
        padding: 4rem;
    }
}

.media-contact-title {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.media-contact-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.media-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 640px) {
    .media-contact-info {
        flex-direction: row;
        justify-content: center;
    }
}

.media-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.media-contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.media-contact-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.media-contact-value:hover {
    color: var(--color-navy);
    text-decoration: underline;
}

