/* ============================================
   CONTENT AND LIST BLOCK
   ============================================ */

/* ── Dark mode (default) ── */

.cal-block {
    display: flex;
    justify-content: center;
    background: #0f1f3d;
    padding: 80px 0 !important;
    width: 100%;
}

.cal-block h2,
.cal-block h3,
.cal-block h4 {
    color: #ffffff !important;
    margin-bottom: 20px;
}

.cal-block p {
    color: #ffffff !important;
    margin-bottom: 1.1rem;
}

.cal-block p:last-child { margin-bottom: 0; }

/* ── Light mode ── */

.cal-block--light {
    background: transparent;
}

.cal-block--light h2,
.cal-block--light h3,
.cal-block--light h4 {
    color: #0f1f3d !important;
}

.cal-block--light p {
    color: #4a5568 !important;
}

.cal-block--light .cal-label {
    color: #c9a84c;
}

/* ── Layout ── */

.cal-container {
    width: 100%;
    max-width: 1140px;
    padding: 0 24px !important;
    box-sizing: border-box;
}

.cal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px !important;
    align-items: center;
}

.cal-label {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #e2c97e !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
}

/* ── Highlight box (extra detail) ── */

.cal-highlight {
    background: rgba(201, 168, 76, 0.08) !important;
    border-left: 4px solid #c9a84c !important;
    border-radius: 0 8px 8px 0 !important;
    padding: 24px 28px !important;
    margin-top: 28px !important;
}

.cal-highlight p {
    font-style: italic !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Dark: inherited white text is fine; Light: force navy */
.cal-block--light .cal-highlight p {
    color: #0f1f3d;
}

/* ── List column ── */

.cal-list-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Dark item */
.cal-item {
    display: flex;
    gap: 16px !important;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px !important;
    padding: 20px !important;
}

/* Light item */
.cal-block--light .cal-item {
    align-items: flex-start;
    background: #f7f8fa !important;
    border: 1px solid #dde2ec !important;
    padding: 24px !important;
}

/* ── Icon ── */

.cal-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.cal-block--light .cal-item-icon {
    background: rgba(201, 168, 76, 0.12);
    margin-top: 2px;
}

.cal-item-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/* ── Item text ── */

.cal-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cal-item-text strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.cal-block--light .cal-item-text strong {
    color: #0f1f3d;
}

.cal-item-text span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.cal-block--light .cal-item-text span {
    color: #4a5568;
}

/* ============================================
   CREDENTIALS LIST STYLE
   ============================================ */

.cal-creds-card {
    background: #f7f8fa !important;
    border-radius: 12px !important;
    padding: 40px !important;
    border: 1px solid #dde2ec !important;
}

.cal-block--dark .cal-creds-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.cal-creds-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cal-creds-list li {
    position: relative !important;
    padding: 11px 0 11px 22px !important;
    border-bottom: 1px solid #dde2ec !important;
    color: #0f1f3d !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.cal-block--dark .cal-creds-list li {
    color: rgba(255, 255, 255, 0.85) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.cal-creds-list li:first-child {
    padding-top: 0 !important;
}

.cal-creds-list li:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.cal-creds-list li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 6px !important;
    height: 6px !important;
    background: #c9a84c !important;
    border-radius: 50% !important;
}

.cal-creds-list li:first-child::before {
    top: 8px !important;
    transform: none !important;
}

/* ── Guarantee badge ── */

.cal-guarantee-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(201, 168, 76, 0.12) !important;
    border: 1px solid rgba(201, 168, 76, 0.3) !important;
    border-radius: 24px !important;
    padding: 8px 18px !important;
    font-family: 'Arial', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: #c9a84c !important;
    margin-top: 24px !important;
}

/* ── Left column CTA button ── */

.cal-button-wrap {
    margin-top: 24px !important;
}

.cal-button-wrap a {
    display: inline-block !important;
    padding: 12px 28px !important;
    border-radius: 4px !important;
    font-family: Arial, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    letter-spacing: 0.02em !important;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    background: transparent !important;
    border: 2px solid #0f1f3d !important;
    color: #0f1f3d !important;
}

.cal-block--dark .cal-button-wrap a {
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
}

.cal-button-wrap a:hover {
    background: #0f1f3d !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.cal-block--dark .cal-button-wrap a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #ffffff !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 782px) {
    .cal-block {
        padding: 60px 0 !important;
    }

    .cal-container {
        padding: 0 20px !important;
    }

    .cal-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}
