/* Craft Notices — Frontend CSS v2.0.0 — Regon Craft */

.cn-notice {
    --cn-bg:     #ffffff;
    --cn-border: #2563eb;
    --cn-title:  #2563eb;
    --cn-text:   #000000;

    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    align-items: start;

    background:    var(--cn-bg);
    border:        2px solid var(--cn-border);
    border-radius: 6px;
    padding:       18px 22px;
    margin:        16px 0;
    max-width:     100%;
    box-sizing:    border-box;
}

/* Col 1 Row 1 — Icône */
.cn-notice .cn-icon {
    grid-column: 1;
    grid-row:    1;
    width:  38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cn-border);
    display:     flex;
    align-items: center;
    justify-content: center;
    align-self:  center;
    flex-shrink: 0;
}

.cn-notice .cn-icon .cn-icon-letter {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style:  italic;
    font-weight: 700;
    font-size:   22px;
    line-height: 1;
    color:       #fff;
    user-select: none;
}

/* Col 2 Row 1 — Titre */
.cn-notice .cn-title {
    grid-column:  2;
    grid-row:     1;
    font-weight:  700;
    font-size:    16px;
    color:        var(--cn-title);
    line-height:  38px;
    margin: 0; padding: 0;
}

/* Col 2 Row 2 — Message */
.cn-notice .cn-message {
    grid-column: 2;
    grid-row:    2;
    font-size:   14.5px;
    line-height: 1.65;
    color:       var(--cn-text);
    margin-top:  8px;
}

.cn-notice .cn-message a {
    color: var(--cn-border);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cn-notice .cn-message a:hover { opacity: .8; }
