/* ============================================
   MHB Press Release - MISC Style
   Brand colors:
     Navy:  #00009D
     Green: #00FF78
     Pill:  #E5ECF4
   ============================================ */

.mhb-press-release {
    --mhb-pr-navy: #00009D;
    --mhb-pr-green: #00FF78;
    --mhb-pr-pill-bg: #E5ECF4;
    --mhb-pr-text: #00009D;
    --mhb-pr-muted: #6b7280;

    width: 100%;
    box-sizing: border-box;
}

.mhb-press-release *,
.mhb-press-release *::before,
.mhb-press-release *::after {
    box-sizing: border-box;
}

.mhb-press-release-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 992px) {
    .mhb-press-release-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 32px;
    }
}

/* ---- Featured Card ---- */
.mhb-pr-featured {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background-color: var(--mhb-pr-navy);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.mhb-pr-featured:hover,
.mhb-pr-featured:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 157, 0.25);
}

.mhb-pr-featured-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .mhb-pr-featured-image {
        aspect-ratio: 16 / 11;
    }
}

/* Navy content box below image */
.mhb-pr-featured-box {
    position: relative;
    background-color: var(--mhb-pr-navy);
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.mhb-press-release .mhb-pr-featured .mhb-pr-featured-title,
h3.mhb-pr-featured-title {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 500;
    line-height: 1.3;
    color: #fff !important;
    margin: 0;
    padding-right: 56px;
}

.mhb-pr-featured-date {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
}

/* ---- List ---- */
.mhb-pr-list {
    display: flex;
    flex-direction: column;
}

.mhb-pr-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
    text-decoration: none;
    color: var(--mhb-pr-navy);
    transition: padding 0.3s ease;
}

.mhb-pr-item:first-child {
    padding-top: 8px;
}

.mhb-pr-item:last-child {
    border-bottom: 0;
}

.mhb-pr-item:hover,
.mhb-pr-item:focus {
    color: var(--mhb-pr-navy);
    text-decoration: none;
    padding-left: 8px;
}

.mhb-pr-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.mhb-pr-item-title {
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--mhb-pr-navy);
    margin: 0;
}

.mhb-pr-item-date {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--mhb-pr-muted);
}

/* ---- Category Pills ---- */
.mhb-pr-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mhb-pr-pill {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--mhb-pr-pill-bg);
    color: var(--mhb-pr-navy);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0.3px;
}

.mhb-pr-pill-light {
    background-color: rgba(229, 236, 244, 0.95);
    color: var(--mhb-pr-navy);
}

/* ---- Arrow Icons ---- */
.mhb-pr-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mhb-pr-navy);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mhb-pr-arrow-circle {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.mhb-pr-featured .mhb-pr-arrow-circle {
    color: #fff;
}

.mhb-pr-item:hover .mhb-pr-arrow,
.mhb-pr-item:focus .mhb-pr-arrow,
.mhb-pr-featured:hover .mhb-pr-arrow,
.mhb-pr-featured:focus .mhb-pr-arrow {
    transform: translateX(4px);
}

.mhb-pr-featured:hover .mhb-pr-arrow-circle,
.mhb-pr-featured:focus .mhb-pr-arrow-circle {
    background-color: var(--mhb-pr-green);
    color: var(--mhb-pr-navy);
    transform: translateX(4px);
}

/* ---- Mobile adjustments ---- */
@media (max-width: 767px) {
    .mhb-pr-featured-box {
        padding: 22px 20px 24px;
    }

    .mhb-pr-arrow-circle {
        right: 16px;
        bottom: 16px;
        width: 40px;
        height: 40px;
    }
}
