/* Press release section — homepage */

.press-section {
    background-color: #fff;
    padding: 60px 0 70px;
    margin-top: 0;
}

.press-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.press-section-header h2 {
    font-family: var(--font-primary, "Montserrat", sans-serif);
    font-weight: 700;
    color: #093E34;
    font-size: 2rem;
    margin-bottom: 12px;
}

.press-section-header p {
    color: #666;
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.press-card-link {
    display: block;
    height: 100%;
}

.press-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(9, 62, 52, 0.08);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.press-card-link:hover .press-card {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(9, 62, 52, 0.18);
}

/* Glimmer sweep on hover */
.press-card-glimmer {
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 35%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0.15) 65%,
        transparent 100%
    );
    transform: skewX(-18deg);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.press-card-link:hover .press-card-glimmer {
    opacity: 1;
    animation: press-glimmer-sweep 0.75s ease-in-out forwards;
}

@keyframes press-glimmer-sweep {
    0% {
        left: -120%;
    }
    100% {
        left: 140%;
    }
}

.press-card-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.press-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.press-card-link:hover .press-card-img {
    transform: scale(1.08);
}

.press-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.press-card-date {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-secondary, #ca952f);
    margin-bottom: 10px;
}

.press-card-title {
    font-family: var(--font-primary, "Montserrat", sans-serif);
    font-weight: 700;
    color: var(--color-default, #222);
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-card-link:hover .press-card-title {
    color: #093E34;
}

.press-card-excerpt {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-card-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 14px;
    margin-top: auto;
}

.press-read-more {
    color: #093E34;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.press-card-link:hover .press-read-more {
    color: var(--color-secondary, #ca952f);
    gap: 10px;
}

.press-read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

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

.press-view-all-wrap {
    text-align: center;
    margin-top: 40px;
}

.press-view-all-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #093E34;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.press-view-all-btn:hover {
    background-color: #116232;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(9, 62, 52, 0.25);
}

/* Responsive */
@media screen and (max-width: 991px) {
    .press-section {
        padding: 40px 0 50px;
    }

    .press-section-header h2 {
        font-size: 1.6rem;
    }

    .press-card-img-wrap {
        height: 200px;
    }
}

@media screen and (max-width: 767px) {
    .press-section {
        padding: 30px 0 40px;
    }

    .press-section-header {
        margin-bottom: 24px;
    }

    .press-section-header h2 {
        font-size: 1.4rem;
    }

    .press-card-img-wrap {
        height: 220px;
    }

    .press-view-all-wrap {
        margin-top: 24px;
    }

    .press-view-all-btn {
        padding: 12px 32px;
        font-size: 0.8rem;
    }
}

/* Press listing page — list layout */
.press-listing-hero {
    margin-bottom: 0;
}

.press-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.press-list-item {
    margin: 0;
}

.press-list-link {
    display: flex;
    align-items: stretch;
    gap: 24px;
    background: #fff;
    border: 1px solid rgba(9, 62, 52, 0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: inherit;
}

.press-list-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(9, 62, 52, 0.14);
    color: inherit;
}

.press-list-thumb {
    flex: 0 0 240px;
    max-width: 240px;
    min-height: 180px;
    overflow: hidden;
    background: #f3f5f4;
}

.press-list-thumb img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.press-list-link:hover .press-list-thumb img {
    transform: scale(1.06);
}

.press-list-body {
    flex: 1;
    padding: 24px 24px 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.press-list-date {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-secondary, #ca952f);
    margin-bottom: 10px;
}

.press-list-title {
    font-family: var(--font-primary, "Montserrat", sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #093E34;
    line-height: 1.4;
    margin: 0 0 10px;
    transition: color 0.3s ease;
}

.press-list-link:hover .press-list-title {
    color: var(--color-secondary, #ca952f);
}

.press-list-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 14px;
}

.press-list-read-more {
    color: #093E34;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: color 0.3s ease, gap 0.3s ease;
}

.press-list-link:hover .press-list-read-more {
    color: var(--color-secondary, #ca952f);
    gap: 10px;
}

@media screen and (max-width: 767px) {
    .press-list-link {
        flex-direction: column;
        gap: 0;
    }

    .press-list-thumb {
        flex: none;
        max-width: none;
        width: 100%;
        min-height: 200px;
    }

    .press-list-body {
        padding: 20px;
    }

    .press-list-title {
        font-size: 1.1rem;
    }
}
