.press-section {
    background: #fbfbfb;
}

.press-month-section {
    margin-bottom: 60px;
}

.press-month-title {
    font-size: 28px;
    font-weight: 700;
    color: #f68a0a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f68a0a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.press-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.press-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.press-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.press-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.press-card-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
    font-weight: 500;
}

.press-card-date i {
    margin-right: 5px;
    color: #f68a0a;
}

.press-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-card-excerpt {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-card-link {
    color: #f68a0a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.press-card-link:hover {
    color: #d97706;
    transform: translateX(5px);
}

.press-card-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.press-card-link:hover i {
    transform: translateX(3px);
}

.press-hero-section {
    background: linear-gradient(135deg, #f68a0a 0%, #d97706 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.press-hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.press-hero-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

@media (max-width: 991px) {
    .press-hero-section h1 {
        font-size: 36px;
    }

    .press-month-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .press-hero-section {
        padding: 60px 0;
    }

    .press-hero-section h1 {
        font-size: 28px;
    }

    .press-hero-section p {
        font-size: 16px;
    }

    .press-month-title {
        font-size: 20px;
    }

    .press-card-image {
        height: 200px;
    }
}
