.actions-page {
    width: min(1120px, calc(100% - 32px));
    margin: 112px auto 72px;
    color: #000000;
}

.actions-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 300px;
    padding: clamp(38px, 6vw, 72px) clamp(25px, 7vw, 82px);
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(125deg, #102f48 0%, #165a73 54%, #2b8a83 100%);
    box-shadow: 0 20px 50px rgba(16, 47, 72, 0.2);
    color: #fff;
}

.actions-kicker,
.action-label {
    display: block;
    color: #f6c86f;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.actions-kicker {
    margin-bottom: 10px;
}

.actions-hero h1 {
    margin: 0;
    font-family: Anton, sans-serif;
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    font-weight: 400;
    line-height: 1.02;
}

.actions-hero h1 strong {
    color: #f6c86f;
    font-weight: 400;
}

.actions-hero p {
    max-width: 600px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.87);
    font-family: Poppins, sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    text-align: left;
}

.actions-hero-mark {
    display: grid;
    flex: 0 0 145px;
    width: 145px;
    height: 145px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    color: #f6c86f;
    font-size: 4.8rem;
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.06), 0 0 0 36px rgba(255, 255, 255, 0.04);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 54px;
}

.action-feature {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 470px;
    border: 1px solid rgba(24, 42, 58, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 28px rgba(16, 47, 72, 0.09);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.action-feature:hover {
    box-shadow: 0 16px 34px rgba(16, 47, 72, 0.15);
    transform: translateY(-4px);
}

.action-feature:first-child {
    grid-column: 1 / -1;
    min-height: 390px;
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
}

.action-feature .card-img-top {
    width: 100% !important;
    height: 205px !important;
    object-fit: contain !important;
    padding: 28px;
    background: #edf6f4;
}

.action-feature:first-child .card-img-top {
    height: 100% !important;
    min-height: 390px;
}

.action-feature .card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 30px;
}

.action-feature .action-label {
    margin-bottom: 10px;
    color: #16706f;
}

.action-feature .card-title {
    margin: 0;
    color: #182a3a;
    font-family: Anton, sans-serif !important;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 400;
    line-height: 1.1;
}

.action-feature .card-text {
    margin: 18px 0 0;
    color: #405364;
    font-family: Poppins, sans-serif !important;
    font-size: 0.96rem;
    line-height: 1.75;
    text-align: left;
}

.action-links {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: auto;
    padding-top: 25px;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 17px;
    border-radius: 6px;
    font-family: Poppins, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease;
}

.action-button-primary {
    background: #d57957;
    color: #fff;
}

.action-button-primary:hover {
    background: #bd6245;
    color: #fff;
    transform: translateY(-2px);
}

.action-link-muted {
    align-self: center;
    color: #155b6c;
    font-family: Poppins, sans-serif;
    font-size: 0.83rem;
    font-weight: 700;
    text-decoration: none;
}

.action-link-muted:hover {
    color: #bd6245;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 700px) {
    .actions-page {
        width: min(100% - 22px, 560px);
        margin-top: 92px;
    }

    .actions-hero {
        min-height: 0;
        padding: 38px 24px;
        border-radius: 12px;
    }

    .actions-hero-mark {
        display: none;
    }

    .actions-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .action-feature:first-child {
        display: flex;
        grid-column: auto;
    }

    .action-feature:first-child .card-img-top {
        min-height: 205px;
        height: 205px !important;
    }

    .action-feature .card-body {
        padding: 25px 22px;
    }

    .action-links {
        flex-direction: column;
        align-items: stretch;
    }

    .action-button {
        justify-content: center;
    }
}
