/* ── CKMS Public Styles ─────────────────────────────────────────────────── */
/* Los colores se inyectan como CSS variables desde PHP:
   --ckms-primary:   color principal del club  (ej: #1F4E79)
   --ckms-secondary: color secundario del club (ej: #C65E1B) */

/* ── RESET ───────────────────────────────────────────────────────────────── */
.ckms-calendar,
.ckms-calendar *,
.ckms-news-list,
.ckms-news-list * {
    box-sizing: border-box;
}

/* ── CALENDARIO ───────────────────────────────────────────────────────────── */
.ckms-calendar {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    max-width: 800px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ckms-event {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 0 !important;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,.10);
    overflow: hidden;
    border: none !important;
    transition: box-shadow .15s ease;
}
.ckms-event:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,.16);
}
.ckms-event--cancelled {
    opacity: .55;
}
.ckms-event--cancelled .ckms-event__aside {
    background: #999 !important;
}

/* Franja lateral de fecha */
.ckms-event__aside {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 72px !important;
    max-width: 72px !important;
    width: 72px !important;
    padding: 14px 8px !important;
    background: var(--ckms-primary, #1F4E79) !important;
    color: #fff !important;
    text-align: center !important;
    flex-shrink: 0 !important;
}
.ckms-event__day {
    display: block !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    color: #fff !important;
}
.ckms-event__month {
    display: block !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    margin-top: 2px !important;
    color: #fff !important;
}
.ckms-event__dow {
    display: block !important;
    font-size: 11px !important;
    opacity: .75 !important;
    margin-top: 1px !important;
    color: #fff !important;
}

/* Cuerpo del evento */
.ckms-event__body {
    flex: 1 !important;
    padding: 12px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
}
.ckms-event__header {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}
.ckms-event__title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
}
.ckms-event__meta {
    font-size: 13px !important;
    color: #666 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}
.ckms-event__type {
    display: inline-block !important;
    background: var(--ckms-secondary, #C65E1B) !important;
    color: #fff !important;
    padding: 2px 10px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
}
.ckms-badge--cancelled {
    display: inline-block !important;
    background: #f3f4f6 !important;
    color: #777 !important;
    padding: 2px 10px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

/* ── NOTICIAS ─────────────────────────────────────────────────────────────── */
.ckms-news-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
    max-width: 800px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.ckms-news-item {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    align-items: flex-start !important;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,.10);
    padding: 16px !important;
    transition: box-shadow .15s ease;
}
.ckms-news-item:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,.16);
}
.ckms-news-item__thumb {
    flex-shrink: 0 !important;
}
.ckms-news-item__thumb img {
    width: 100px !important;
    height: 72px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    display: block !important;
}
.ckms-news-item__content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}
.ckms-news-item__content h3 {
    margin: 0 0 2px !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
}
.ckms-news-item__content h3 a {
    color: var(--ckms-primary, #1F4E79) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}
.ckms-news-item__content h3 a:hover {
    text-decoration: underline !important;
}
.ckms-news-item__content time {
    font-size: 12px !important;
    color: #999 !important;
    font-weight: 500 !important;
}
.ckms-news-item__content p {
    margin: 0 !important;
    font-size: 14px !important;
    color: #555 !important;
    line-height: 1.5 !important;
}

/* ── VACÍO ───────────────────────────────────────────────────────────────── */
.ckms-empty {
    color: #999;
    font-style: italic;
    font-size: 14px;
    padding: 8px 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 520px) {
    .ckms-event__aside {
        min-width: 58px !important;
        max-width: 58px !important;
        width: 58px !important;
    }
    .ckms-event__day {
        font-size: 22px !important;
    }
    .ckms-news-item__thumb img {
        width: 72px !important;
        height: 54px !important;
    }
}

/* ── ÁREA PRIVADA DE LA JUNTA ─────────────────────────────────────────────── */

/* Login gate */
.ckms-gate {
    text-align: center;
    padding: 48px 24px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    max-width: 420px;
    margin: 0 auto;
}
.ckms-gate__icon { font-size: 40px; margin-bottom: 12px; }
.ckms-gate h3    { margin: 0 0 8px; font-size: 20px; color: #1a1a1a; }
.ckms-gate p     { color: #666; font-size: 14px; margin: 0 0 20px; }
.ckms-gate__btn  {
    display: inline-block;
    background: var(--ckms-primary, #1F4E79);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: opacity .15s;
}
.ckms-gate__btn:hover { opacity: .85; }
.ckms-gate--denied { border-color: #fca5a5; background: #fef2f2; }
.ckms-gate--denied p { color: #b91c1c; }

/* Cabecera */
.ckms-junta { max-width: 900px; }
.ckms-junta__header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: var(--ckms-primary, #1F4E79);
    border-radius: 8px;
    color: #fff;
}
.ckms-junta__welcome { font-weight: 600; font-size: 14px; }
.ckms-junta__logout  {
    font-size: 12px;
    color: rgba(255,255,255,.8) !important;
    text-decoration: none !important;
}
.ckms-junta__logout:hover { color: #fff !important; text-decoration: underline !important; }

/* Pestañas */
.ckms-tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    margin-bottom: 16px !important;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0 !important;
}
.ckms-tab {
    background: none !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    padding: 8px 16px !important;
    margin-bottom: -2px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #666 !important;
    cursor: pointer !important;
    border-radius: 0 !important;
    transition: color .15s, border-color .15s !important;
}
.ckms-tab:hover { color: var(--ckms-primary, #1F4E79) !important; }
.ckms-tab--active {
    color: var(--ckms-primary, #1F4E79) !important;
    border-bottom-color: var(--ckms-primary, #1F4E79) !important;
}

/* Paneles */
.ckms-panel { display: none !important; }
.ckms-panel--active { display: block !important; }

/* Tabla compartida */
.ckms-table-wrap { overflow-x: auto; }
.ckms-table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 14px !important;
}
.ckms-table th {
    text-align: left !important;
    padding: 8px 12px !important;
    background: #f3f4f6 !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
    color: #555 !important;
    border-bottom: 1px solid #e5e7eb !important;
}
.ckms-table td {
    padding: 10px 12px !important;
    border-bottom: 1px solid #f3f4f6 !important;
    vertical-align: middle !important;
    color: #333 !important;
}
.ckms-table tr:last-child td { border-bottom: none !important; }
.ckms-table tr:hover td { background: #fafafa !important; }
.ckms-doc-link {
    color: var(--ckms-primary, #1F4E79) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 13px !important;
}

/* Urgency badges */
.ckms-urgency {
    display: inline-block !important;
    padding: 2px 10px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    min-width: 56px !important;
    text-align: center !important;
}
.ckms-urgency--red     { background: #fee2e2; color: #b91c1c; }
.ckms-urgency--orange  { background: #ffedd5; color: #c2410c; }
.ckms-urgency--yellow  { background: #fef9c3; color: #854d0e; }
.ckms-urgency--green   { background: #dcfce7; color: #166534; }
.ckms-urgency--expired { background: #f3f4f6; color: #999;    }
.ckms-urgency--grey    { background: #f3f4f6; color: #aaa;    }

/* Tarjetas de contacto */
.ckms-contacts {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 12px !important;
}
.ckms-contact-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}
.ckms-contact-card__name   { font-size: 15px; font-weight: 700; color: #1a1a1a; }
.ckms-contact-card__role   { font-size: 12px; color: var(--ckms-primary, #1F4E79); font-weight: 600; }
.ckms-contact-card__entity { font-size: 12px; color: #666; }
.ckms-contact-card__email  { font-size: 13px; color: var(--ckms-primary, #1F4E79) !important; text-decoration: none !important; }
.ckms-contact-card__phone  { font-size: 13px; color: #555; }

/* Lista de procedimientos — acordeón nativo <details>/<summary> */
.ckms-proc-list { display: flex !important; flex-direction: column !important; gap: 8px !important; }

.ckms-proc-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.ckms-proc-item[open] {
    border-color: var(--ckms-primary, #1F4E79);
}

.ckms-proc-summary {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 12px 14px !important;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.ckms-proc-summary::-webkit-details-marker { display: none; }

.ckms-proc-summary::after {
    content: '›';
    margin-left: auto;
    font-size: 18px;
    color: var(--ckms-primary, #1F4E79);
    transition: transform .2s;
    flex-shrink: 0;
    line-height: 1.2;
}

.ckms-proc-item[open] .ckms-proc-summary::after {
    transform: rotate(90deg);
}

.ckms-proc-summary:hover {
    background: #f5f7fb;
}

.ckms-proc-item__icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

.ckms-proc-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
}

.ckms-proc-excerpt {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.ckms-proc-body {
    padding: 0 16px 16px 44px;
    font-size: 13.5px;
    line-height: 1.7;
    color: #374151;
    border-top: 1px solid #f0f0f0;
}

.ckms-proc-body p { margin: 10px 0; }
.ckms-proc-body ul, .ckms-proc-body ol { padding-left: 20px; margin: 8px 0; }
.ckms-proc-body li { margin-bottom: 4px; }
.ckms-proc-body strong { color: #1a1a1a; }
.ckms-proc-body a { color: var(--ckms-primary, #1F4E79); }

.ckms-proc-no-content { color: #9ca3af; font-style: italic; margin: 0; }

/* ── JORNADAS — CALENDARIO MENSUAL ────────────────────────────────────────── */

/* Shared buttons */
.ckms-btn { display: inline-flex; align-items: center; gap: 4px; border: none; border-radius: 6px; padding: 7px 14px; font-size: 13px; cursor: pointer; text-decoration: none; transition: opacity .15s; }
.ckms-btn:hover { opacity: .85; }
.ckms-btn--primary { background: var(--ckms-primary, #1F4E79); color: #fff; }
.ckms-btn--ghost { background: transparent; color: var(--ckms-primary, #1F4E79); border: 1px solid currentColor; }
.ckms-btn--sm { padding: 5px 10px; font-size: 12px; }

/* Toolbar */
.ckms-jornadas-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

/* Loading */
.ckms-jornadas-loading { color: #6b7280; font-style: italic; padding: 20px 0; }

/* Contenedor del calendario */
.ckms-jornadas-calendar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

/* Cabecera del mes: prev | Mes AAAA | next */
.ckms-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--ckms-primary, #1F4E79);
    color: #fff;
}
.ckms-cal-header__title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}
.ckms-cal-nav {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    line-height: 1;
    transition: background .15s;
}
.ckms-cal-nav:hover { background: rgba(255,255,255,.2); }
.ckms-cal-nav:disabled { opacity: .35; cursor: default; }

/* Días de la semana */
.ckms-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-bottom: 1px solid #e5e7eb;
}
.ckms-cal-weekdays span {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #6b7280;
    padding: 6px 0;
}

/* Cuadrícula de días */
.ckms-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
}
.ckms-cal-cell {
    min-height: 72px;
    padding: 6px 4px 4px;
    border-right: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    cursor: default;
    transition: background .12s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
.ckms-cal-cell:nth-child(7n) { border-right: none; }
.ckms-cal-cell--empty {
    background: #fafafa;
}
.ckms-cal-cell--other-month {
    opacity: .4;
}
.ckms-cal-cell--today .ckms-cal-day-num {
    background: var(--ckms-secondary, #C65E1B);
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ckms-cal-cell--has-matches {
    cursor: pointer;
    background: #f0f7ff;
}
.ckms-cal-cell--has-matches:hover {
    background: #dbeafe;
}
.ckms-cal-cell--selected {
    background: #dbeafe !important;
    outline: 2px solid var(--ckms-primary, #1F4E79);
    outline-offset: -2px;
}
.ckms-cal-day-num {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    line-height: 24px;
    width: 24px;
    text-align: center;
}
.ckms-cal-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
    min-height: 10px;
}
.ckms-cal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.ckms-cal-badges {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: center;
}
.ckms-cal-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 8px;
    line-height: 1.4;
}
.ckms-cal-badge--home { background: #e0f2fe; color: #0369a1; }
.ckms-cal-badge--away { background: #fef3c7; color: #92400e; }

/* Spinner de carga del calendario */
.ckms-cal-loading {
    text-align: center;
    padding: 32px;
    color: #6b7280;
    font-size: 13px;
    font-style: italic;
}

/* ── PANEL DE DÍA ─────────────────────────────────────────────────────────── */
.ckms-day-panel {
    margin-top: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    animation: ckmsSlideDown .18s ease;
}
@keyframes ckmsSlideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ckms-day-panel[hidden] { display: none; }
.ckms-day-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}
.ckms-day-panel__title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}
.ckms-day-panel__close {
    background: none;
    border: none;
    font-size: 16px;
    color: #6b7280;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background .12s;
}
.ckms-day-panel__close:hover { background: #e5e7eb; }
.ckms-day-panel__body {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Secciones dentro del panel de día (Casa / Fuera) */
.ckms-day-section__title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6b7280;
    margin: 8px 0 4px;
}
.ckms-day-section__title:first-child { margin-top: 0; }

/* Tarjetas de partido */
.ckms-match-card {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: start;
    gap: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 12px;
}
.ckms-match-card--cancelled { opacity: .6; }
.ckms-match-card__cat {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    align-self: center;
    line-height: 1.2;
}
.ckms-match-card__header { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-bottom: 3px; }
.ckms-match-card__opponent { font-size: 13.5px; font-weight: 600; color: #111; }
.ckms-match-result { font-weight: 700; font-size: 14px; color: var(--ckms-primary, #1F4E79); background: #eff6ff; padding: 1px 7px; border-radius: 6px; }
.ckms-match-card__meta { display: flex; flex-wrap: wrap; gap: 6px; font-size: 12px; color: #6b7280; }
.ckms-match-card__actions { align-self: center; }

/* Tarjetas de partido canceladas */
.ckms-match-cancelled-badge {
    display: inline-block;
    background: #f3f4f6;
    color: #777;
    padding: 1px 7px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

/* ── MODAL RESULTADO ──────────────────────────────────────────────────────── */
body.ckms-modal-open { overflow: hidden; }

.ckms-result-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.ckms-result-modal[hidden] { display: none; }
.ckms-result-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(2px);
}
.ckms-result-modal__box {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    animation: ckmsModalIn .2s ease;
}
@keyframes ckmsModalIn {
    from { opacity: 0; transform: scale(.94); }
    to   { opacity: 1; transform: scale(1); }
}
.ckms-result-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.ckms-result-modal__title { margin: 0; font-size: 15px; color: #111; }
.ckms-result-modal__close {
    background: none;
    border: none;
    font-size: 18px;
    color: #6b7280;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
}
.ckms-result-modal__close:hover { background: #f3f4f6; }
.ckms-result-modal__info {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}
/* Marcadores */
.ckms-result-scores {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}
.ckms-result-scores__team { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ckms-result-scores__team span { font-size: 12px; font-weight: 600; color: #6b7280; }
.ckms-result-scores__team input[type="number"] {
    width: 72px;
    height: 56px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: var(--ckms-primary, #1F4E79);
    -moz-appearance: textfield;
}
.ckms-result-scores__team input[type="number"]::-webkit-inner-spin-button,
.ckms-result-scores__team input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
.ckms-result-scores__team input[type="number"]:focus { outline: none; border-color: var(--ckms-primary, #1F4E79); }
.ckms-result-scores__sep { font-size: 24px; color: #9ca3af; font-weight: 300; }
/* Cancelado */
.ckms-result-cancelled {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    margin-bottom: 16px;
    cursor: pointer;
}
/* Feedback */
.ckms-result-feedback {
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-align: center;
}
.ckms-result-feedback--ok    { background: #d1fae5; color: #065f46; }
.ckms-result-feedback--error { background: #fee2e2; color: #991b1b; }
/* Acciones */
.ckms-result-modal__actions { display: flex; gap: 8px; justify-content: flex-end; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .ckms-tab { padding: 7px 10px !important; font-size: 13px !important; }
    .ckms-contacts { grid-template-columns: 1fr !important; }
    .ckms-junta__header { flex-direction: column !important; gap: 6px !important; text-align: center !important; }
    .ckms-cal-cell { min-height: 56px; padding: 4px 2px 2px; }
    .ckms-cal-dot { width: 6px; height: 6px; }
    .ckms-match-card { grid-template-columns: 40px 1fr; }
    .ckms-match-card__actions { grid-column: 2; }
}
