/*
 * Styles for Actions Archive Page
 */
.post-type-archive-actions .page-shell {
    padding-bottom: 48px;
}

.promotions-page-hero {
    position: relative;
    overflow: hidden;
    padding: 42px 48px 46px;
    border-radius: 32px;
    background: radial-gradient(circle at 18% 24%, rgba(223, 230, 240, 0.82), transparent 18%), radial-gradient(circle at 82% 18%, rgba(230, 244, 249, 0.9), transparent 22%), linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 253, 0.95));
    box-shadow: 0 28px 60px rgba(49, 71, 103, 0.08), inset 0 0 0 1px rgba(214, 225, 236, 0.72);
}

.promotions-page-title {
    margin: 20px 0 0;
    max-width: 760px;
    color: #1d3558;
    font-size: clamp(42px, 4.8vw, 68px);
    line-height: 0.96;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.promotions-page-subtitle {
    max-width: 720px;
    margin: 18px 0 0;
    color: #7c8aa1;
    font-size: 20px;
    line-height: 1.45;
}

.promotions-page-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 34px;
}

.promotions-page-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, #21345d 0%, #1b2b4c 100%);
    box-shadow: 0 12px 28px rgba(27, 43, 76, 0.18);
    color: #fff;
    font-size: 17px;
    line-height: 1;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promotions-page-cta-icon {
    font-size: 22px;
    line-height: 1;
}

.actions-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.contacts-support-card {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 220px;
    padding: 34px 28px;
    border: 1px solid rgba(214, 225, 236, 0.9);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(162, 184, 205, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contacts-support-icon {
    flex: 0 0 auto;
    width: 96px;
    height: 96px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.18) 32%, transparent 33%), linear-gradient(180deg, rgba(24, 167, 190, 0.22) 0%, rgba(24, 167, 190, 0.08) 100%);
    color: #18a7be;
}

.contacts-support-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.contacts-support-card-title {
    color: var(--color-primary);
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contacts-support-card-value {
    color: #7b879d;
    font-size: 16px;
    line-height: 1.4;
    word-break: break-word;
}

@media (max-width: 1100px) {
    .contacts-support-card {
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .post-type-archive-actions .container.page-wrap {
        width: min(100% - 24px, 1280px);
        padding-top: 98px;
    }
    .promotions-page-hero {
        padding: 28px 20px 24px;
        border-radius: 26px;
    }
    .promotions-page-title {
        margin-top: 16px;
        font-size: clamp(34px, 12vw, 46px);
    }
    .promotions-page-subtitle {
        margin-top: 14px;
        font-size: 17px;
        line-height: 1.45;
    }
    .promotions-page-meta {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 24px;
    }
    .promotions-page-cta {
        width: 100%;
        justify-content: space-between;
    }
    .promotions-shell {
        padding: 0 16px;
    }
    .promotions-head {
        flex-direction: column;
        gap: 18px;
    }
    .promotions-title {
        font-size: clamp(24px, 6vw, 30px);
    }
    .promotions-subtitle {
        margin-top: 12px;
        font-size: 16px;
    }
    .contacts-support-section {
        padding: 0;
    }
    .contacts-support-shell {
        padding: 36px 24px;
        border-radius: 20px;
    }
    .contacts-support-title {
        font-size: clamp(24px, 6vw, 32px);
    }
    .contacts-support-subtitle {
        margin-top: 18px;
        font-size: 15px;
    }
    .contacts-support-grid {
        gap: 18px;
        margin-top: 32px;
    }
    .contacts-support-card {
        gap: 18px;
        padding: 22px 18px;
        border-radius: 24px;
    }
    .contacts-support-icon {
        width: 72px;
        height: 72px;
    }
    .contacts-support-icon svg {
        width: 34px;
        height: 34px;
    }
    .contacts-support-card-title {
        font-size: 16px;
    }
}