/* =========================================
   PRESS PAGE STYLES
   ========================================= */

.press-hero {
    padding: 100px 0;
    text-align: center;
}

.press-hero h1 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 56px;
}

body.light .press-hero h1 {
    color: #333;
}

.press-hero p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
}

body.light .press-hero p {
    color: #666;
}

/* =========================================
   PRESS FILTERS
   ========================================= */

.press-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid rgba(11, 160, 38, 0.3);
    background: transparent;
    color: #ccc;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #0ba026;
    color: #0ba026;
}

.filter-btn.active {
    border-color: #0ba026;
    background: #0ba026;
    color: #fff;
}

body.light .filter-btn {
    border-color: rgba(11, 160, 38, 0.2);
    color: #666;
}

body.light .filter-btn:hover,
body.light .filter-btn.active {
    color: #fff;
}

/* =========================================
   PRESS CONTENT SECTION
   ========================================= */

.press-content {
    padding: 80px 0;
}

/* =========================================
   FEATURED ARTICLE
   ========================================= */

.press-featured {
    background: rgba(11, 160, 38, 0.1);
    border: 1px solid rgba(11, 160, 38, 0.2);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    transition: all 0.3s ease;
}

.press-featured:hover {
    border-color: #0ba026;
    background: rgba(11, 160, 38, 0.15);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: linear-gradient(90deg, #0ba026 0%, #099820 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-image {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.press-featured:hover .featured-image img {
    transform: scale(1.02);
}

.featured-content {
    padding: 10px 0;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    align-items: center;
}

.article-meta .date {
    font-size: 13px;
    color: #999;
    font-weight: 600;
}

.article-meta .category {
    display: inline-block;
    background: rgba(11, 160, 38, 0.2);
    color: #0ba026;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

body.light .article-meta .date {
    color: #999;
}

body.light .article-meta .category {
    background: rgba(11, 160, 38, 0.1);
}

.press-featured h2 {
    color: #fff;
    font-size: 32px;
    margin: 15px 0;
    line-height: 1.3;
}

body.light .press-featured h2 {
    color: #333;
}

.featured-content > p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

body.light .featured-content > p {
    color: #666;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0ba026;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.read-more:hover {
    gap: 12px;
    color: #099820;
}

body.light .featured-content {
    border-color: rgba(11, 160, 38, 0.1);
}

/* =========================================
   PRESS GRID
   ========================================= */

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* =========================================
   PRESS CARDS
   ========================================= */

.press-card {
    background: rgba(11, 160, 38, 0.05);
    border: 1px solid rgba(11, 160, 38, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.press-card:hover {
    border-color: #0ba026;
    background: rgba(11, 160, 38, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(11, 160, 38, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    background: rgba(11, 160, 38, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(11, 160, 38, 0.1);
    overflow: hidden;
}

.placeholder-image {
    font-size: 48px;
    color: #0ba026;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11, 160, 38, 0.1) 0%, rgba(11, 160, 38, 0.05) 100%);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.press-card h3 {
    color: #fff;
    font-size: 18px;
    margin: 15px 0 10px 0;
    line-height: 1.4;
}

body.light .press-card h3 {
    color: #333;
}

.card-content > p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

body.light .card-content > p {
    color: #666;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0ba026;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.card-link:hover {
    gap: 12px;
}

body.light .press-card {
    background: rgba(11, 160, 38, 0.02);
    border-color: rgba(11, 160, 38, 0.08);
}

body.light .press-card:hover {
    background: rgba(11, 160, 38, 0.05);
}

body.light .placeholder-image {
    background: linear-gradient(135deg, rgba(11, 160, 38, 0.05) 0%, rgba(11, 160, 38, 0.02) 100%);
}

/* =========================================
   LOAD MORE BUTTON
   ========================================= */

#load-more-container {
    margin-top: 40px;
    padding: 20px 0;
}

.btn.btn-outline.btn-lg {
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 4px;
    border: 2px solid #0ba026;
    background: transparent;
    color: #0ba026;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.btn-outline.btn-lg:hover {
    background: #0ba026;
    color: #fff;
    box-shadow: 0 6px 20px rgba(11, 160, 38, 0.3);
}

/* =========================================
   SUBSCRIBE SECTION
   ========================================= */

.press-subscribe {
    padding: 80px 0;
    background: rgba(11, 160, 38, 0.05);
}

.press-subscribe h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
}

body.light .press-subscribe h2 {
    color: #333;
}

.press-subscribe > .container > .row > .col-xs-12 > p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
}

body.light .press-subscribe > .container > .row > .col-xs-12 > p {
    color: #666;
}

.press-subscribe-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.press-subscribe-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(11, 160, 38, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.press-subscribe-form input::placeholder {
    color: #999;
}

.press-subscribe-form input:focus {
    outline: none;
    border-color: #0ba026;
    background: rgba(11, 160, 38, 0.1);
}

body.light .press-subscribe-form input {
    background: rgba(11, 160, 38, 0.05);
    color: #333;
    border-color: rgba(11, 160, 38, 0.2);
}

body.light .press-subscribe-form input:focus {
    background: rgba(11, 160, 38, 0.1);
}

.form-group > .btn {
    padding: 12px 30px;
    background: linear-gradient(90deg, #0ba026 0%, #099820 100%);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-group > .btn:hover {
    background: linear-gradient(90deg, #099820 0%, #0ba026 100%);
    box-shadow: 0 4px 15px rgba(11, 160, 38, 0.3);
}

.form-note {
    color: #999;
    font-size: 12px;
    text-align: center;
    margin: 0;
}

body.light .form-note {
    color: #999;
}

/* =========================================
   MEDIA KIT SECTION
   ========================================= */

.press-media-kit {
    padding: 80px 0;
}

.press-media-kit h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 10px;
    text-align: center;
}

body.light .press-media-kit h2 {
    color: #333;
}

.section-subtitle {
    color: #ccc;
    font-size: 16px;
    text-align: center;
    margin-bottom: 50px;
}

body.light .section-subtitle {
    color: #666;
}

.media-kit-card {
    background: rgba(11, 160, 38, 0.05);
    border: 1px solid rgba(11, 160, 38, 0.1);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.media-kit-card:hover {
    border-color: #0ba026;
    background: rgba(11, 160, 38, 0.1);
    transform: translateY(-5px);
}

.kit-icon {
    font-size: 48px;
    color: #0ba026;
    margin-bottom: 20px;
}

.media-kit-card h3 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 15px 0;
}

body.light .media-kit-card h3 {
    color: #333;
}

.media-kit-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

body.light .media-kit-card p {
    color: #666;
}

.kit-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #0ba026 0%, #099820 100%);
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.kit-download:hover {
    box-shadow: 0 4px 15px rgba(11, 160, 38, 0.3);
    gap: 12px;
}

body.light .media-kit-card {
    background: rgba(11, 160, 38, 0.02);
    border-color: rgba(11, 160, 38, 0.08);
}

body.light .media-kit-card:hover {
    background: rgba(11, 160, 38, 0.05);
}

/* =========================================
   CONTACT SECTION
   ========================================= */

.press-contact {
    padding: 80px 0;
    background: rgba(11, 160, 38, 0.05);
}

.press-contact h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
}

body.light .press-contact h2 {
    color: #333;
}

.press-contact > .container > .row > .col-xs-12 > p {
    color: #ccc;
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
}

body.light .press-contact > .container > .row > .col-xs-12 > p {
    color: #666;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.info-item i {
    font-size: 24px;
    color: #0ba026;
}

.info-item a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: #0ba026;
}

body.light .info-item a {
    color: #666;
}

.info-item span {
    color: #ccc;
}

body.light .info-item span {
    color: #666;
}

/* =========================================
   RESPONSIVE STYLES
   ========================================= */

@media (max-width: 768px) {
    .press-hero {
        padding: 50px 0;
    }

    .press-hero h1 {
        font-size: 36px;
    }

    .press-hero p {
        font-size: 16px;
    }

    .press-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .press-featured {
        padding: 25px;
        margin-bottom: 40px;
    }

    .featured-badge {
        left: 15px;
        padding: 5px 12px;
        font-size: 11px;
    }

    .featured-image {
        margin-bottom: 20px;
    }

    .press-featured h2 {
        font-size: 22px;
    }

    .featured-content > p {
        font-size: 14px;
    }

    .press-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .press-content {
        padding: 50px 0;
    }

    .article-meta {
        gap: 10px;
        font-size: 12px;
    }

    .press-card h3 {
        font-size: 16px;
    }

    .card-content {
        padding: 20px;
    }

    .press-subscribe {
        padding: 50px 0;
    }

    .press-subscribe h2 {
        font-size: 28px;
    }

    .press-subscribe-form {
        flex-direction: column;
    }

    .form-group {
        flex-direction: column;
    }

    .press-subscribe-form input {
        width: 100%;
    }

    .form-group > .btn {
        width: 100%;
    }

    .press-media-kit {
        padding: 50px 0;
    }

    .press-media-kit h2 {
        font-size: 28px;
    }

    .media-kit-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .kit-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .press-contact {
        padding: 50px 0;
    }

    .press-contact h2 {
        font-size: 28px;
    }

    .contact-info {
        gap: 15px;
    }

    .info-item {
        gap: 12px;
        font-size: 14px;
    }

    .info-item i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .press-hero h1 {
        font-size: 28px;
    }

    .press-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .featured-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .press-featured h2 {
        font-size: 18px;
    }

    .article-meta {
        flex-wrap: wrap;
    }

    .press-card h3 {
        font-size: 14px;
    }

    .card-content > p {
        font-size: 13px;
    }

    .press-subscribe h2,
    .press-media-kit h2,
    .press-contact h2 {
        font-size: 22px;
    }

    .media-kit-card {
        padding: 25px 15px;
    }

    .info-item {
        font-size: 13px;
    }
}

/* =========================================
   INDIVIDUAL PRESS ARTICLE PAGE STYLES
   ========================================= */

.press-article section {
    padding: 60px 0;
}

.press-article .article-content {
    background: transparent;
}

.article-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(11, 160, 38, 0.15);
}

.article-header h1 {
    color: #fff;
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}

body.light .article-header h1 {
    color: #333;
}

.article-header .article-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #999;
    margin-top: 20px;
    align-items: center;
}

.article-header .date {
    font-weight: 600;
}

.article-header .category {
    display: inline-block;
    background: rgba(11, 160, 38, 0.2);
    color: #0ba026;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 60px;
}

body.light .article-body {
    color: #555;
}

.article-body h2 {
    color: #fff;
    font-size: 28px;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

body.light .article-body h2 {
    color: #333;
}

.article-body h3 {
    color: #fff;
    font-size: 22px;
    margin: 30px 0 15px 0;
    line-height: 1.3;
}

body.light .article-body h3 {
    color: #333;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body strong {
    color: #0ba026;
    font-weight: 600;
}

.article-body ul,
.article-body ol {
    margin: 20px 0 20px 30px;
    color: #ccc;
}

body.light .article-body ul,
body.light .article-body ol {
    color: #555;
}

.article-body li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-body a {
    color: #0ba026;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-body a:hover {
    color: #099820;
    text-decoration: underline;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(11, 160, 38, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.article-body table th {
    background: rgba(11, 160, 38, 0.15);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid rgba(11, 160, 38, 0.2);
}

body.light .article-body table th {
    background: rgba(11, 160, 38, 0.1);
    color: #333;
}

.article-body table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(11, 160, 38, 0.1);
    color: #ccc;
}

body.light .article-body table td {
    color: #555;
}

.article-body table tr:last-child td {
    border-bottom: none;
}

.article-cta {
    display: flex;
    gap: 15px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.article-cta .btn {
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.article-cta .btn-primary {
    background: linear-gradient(90deg, #0ba026 0%, #099820 100%);
    color: #fff;
}

.article-cta .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(11, 160, 38, 0.3);
}

.article-cta .btn-outline {
    border: 2px solid #0ba026;
    color: #0ba026;
    background: transparent;
}

.article-cta .btn-outline:hover {
    background: #0ba026;
    color: #fff;
}

.article-sidebar {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid rgba(11, 160, 38, 0.15);
}

.sidebar-widget {
    background: rgba(11, 160, 38, 0.05);
    border: 1px solid rgba(11, 160, 38, 0.1);
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 30px;
}

body.light .sidebar-widget {
    background: rgba(11, 160, 38, 0.02);
    border-color: rgba(11, 160, 38, 0.08);
}

.sidebar-widget h3 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(11, 160, 38, 0.2);
}

body.light .sidebar-widget h3 {
    color: #333;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget li {
    margin-bottom: 12px;
}

.sidebar-widget a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-left: 3px solid transparent;
    padding-left: 10px;
}

body.light .sidebar-widget a {
    color: #666;
}

.sidebar-widget a:hover {
    color: #0ba026;
    border-left-color: #0ba026;
}

/* Responsive for press article pages */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 32px;
    }

    .article-header .article-meta {
        gap: 15px;
        font-size: 13px;
    }

    .article-body {
        font-size: 15px;
    }

    .article-body h2 {
        font-size: 24px;
        margin: 30px 0 15px 0;
    }

    .article-body h3 {
        font-size: 20px;
        margin: 20px 0 12px 0;
    }

    .article-cta {
        flex-direction: column;
    }

    .article-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 24px;
    }

    .article-header .article-meta {
        gap: 10px;
        flex-direction: column;
        font-size: 12px;
    }

    .article-body {
        font-size: 14px;
        line-height: 1.7;
    }

    .article-body h2 {
        font-size: 20px;
    }

    .article-body h3 {
        font-size: 17px;
    }

    .article-cta {
        flex-direction: column;
        gap: 10px;
    }

    .article-cta .btn {
        width: 100%;
        padding: 10px 20px;
    }
}
