/* ========================================
   PRESS PAGE STYLES
   ======================================== */

/* Hero Section */
.press-hero {
    background: linear-gradient(135deg, #0d4227 0%, #1a5f3f 100%);
    padding: 0px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.press-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
    opacity: 0.5;
}

.press-hero-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.press-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.press-hero-subtitle {
    font-family: 'Merriweather', serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-top: 20px;
}

/* Main Content */
.press-main {
    min-height: 60vh;
    padding-bottom: 60px;
}

/* Removed filters styles */

/* Press Grid */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .press-grid {
        gap: 20px;
    }
}

/* Press Card */
.press-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.5s ease;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.press-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.press-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.press-card:hover .press-card-image {
    transform: scale(1.05);
}

/* Card Badge */
.press-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0d4227;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* Card Content */
.press-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.press-card-header {
    position: relative;
}

.press-card-date {
    font-size: 0.85rem;
    color: #0d4227;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.press-card-date::before {
    content: '📰';
}

.press-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.press-card-description {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.press-card-description.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-card-description.full {
    display: block;
}

.press-card-show-more {
    background: none;
    border: none;
    color: #0d4227;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    margin-top: 8px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.press-card-show-more:hover {
    color: #1a5f3f;
}

.press-card-source {
    font-size: 0.85rem;
    color: #0d4227;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.press-card-source::before {
    content: '🏢';
}

/* Card Footer */
.press-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.press-card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #888888;
}

.press-card-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.press-card-meta-item:hover {
    color: #0d4227;
}

.press-card-meta-item i {
    color: #0d4227;
}

.press-card-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.press-card-likes {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Like Button */
.like-btn {
    background: none;
    border: none;
    color: #ddd;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 50%;
}

.like-btn:hover {
    color: #ff6b6b;
    transform: scale(1.2);
    background: rgba(255, 107, 107, 0.1);
}

.like-btn.active {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.like-btn.liked {
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1.1); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* View Counter */
.view-counter {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #888888;
    font-size: 0.85rem;
}

.view-counter i {
    color: #0d4227;
}

/* Press Card Button */
.press-card-button {
    background: #0d4227;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.press-card-button:hover {
    background: #1a5f3f;
    transform: translateX(3px);
    color: #ffffff;
    text-decoration: none;
}

.press-card-button:active {
    transform: scale(0.98);
}

/* Removed press stats styles */

/* Empty State */
.press-empty {
    text-align: center;
    padding: 60px 20px;
}

.press-empty-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.press-empty-text {
    font-size: 1.2rem;
    color: #888;
    font-family: 'Merriweather', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .press-hero {
        padding: 60px 15px;
        margin-bottom: 40px;
    }

    .press-hero-title {
        font-size: 2rem;
    }

    /* Removed filter styles */

    .press-card-content {
        padding: 20px;
    }

    .press-card-title {
        font-size: 1.1rem;
    }

    /* Removed stats grid styles */
}

@media (max-width: 480px) {
    .press-hero {
        padding: 40px 10px;
        margin-bottom: 30px;
    }

    .press-hero-title {
        font-size: 1.5rem;
    }

    .press-hero-subtitle {
        font-size: 0.95rem;
    }

    /* Removed filter styles */

    .press-card {
        border-radius: 8px;
    }

    .press-card-content {
        padding: 15px;
    }

    .press-card-title {
        font-size: 1rem;
    }

    .press-card-description {
        font-size: 0.9rem;
    }

    .press-card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .press-card-meta {
        width: 100%;
        flex-wrap: wrap;
    }

    /* Removed stats grid styles */
}

.hero-container {
    margin: 0 auto;
    grid-template-columns: none;
}


