/* =========================================================
   Accent Note Card Block
   ========================================================= */

.accent-note-card {
    padding: 20px 0;
    background: #FFFFFF;
}

/* ── Card ─────────────────────────────────────────────── */
.accent-note-card__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
    background: #EEEEEE;
    border-left: 3px solid #D41028;
    border-radius: 12px;
    position: relative;
}

/* ── Icon ─────────────────────────────────────────────── */
.accent-note-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #FFFFFF;
}

.accent-note-card__icon img {
    display: block;
    width: 22px;
    height: auto;
    object-fit: contain;
}

/* ── Heading ──────────────────────────────────────────── */
.container-post h2.accent-note-card__heading {
    margin: 0;
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #1C1C1C;
}

/* ── Text ─────────────────────────────────────────────── */
.container-post .accent-note-card__text {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #000000;
}

.accent-note-card__text p:last-child {
    margin-bottom: 0;
}

/* ── Tablet ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .accent-note-card__card {
        padding: 20px;
    }
}