/* =====================================================================
   crop-bids.css — crop tiles and the bid dialog.

   Loaded by the two public surfaces that sell crops: the marketplace's "Crops
   for sale" section and each farm's own page. Shared rather than inlined per
   view so a bid looks and behaves identically wherever a buyer meets it —
   these two pages already drifted apart once over crop cards.

   Scoped to .crop-card / .cb-* so it cannot reach the rest of either page,
   both of which style themselves inline.
   ===================================================================== */

/* ---- Crop tiles ------------------------------------------------------- */
.crop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 20px;
}

.crop-card {
    --co-pri: #16a34a;
    --co-accent: #15803d;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 2px 8px -2px rgba(15, 23, 42, .05);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.crop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -12px rgba(15, 23, 42, .18);
    border-color: color-mix(in srgb, var(--co-pri) 35%, transparent);
}

.crop-shot {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--co-pri), var(--co-accent));
}
.crop-shot img { width: 100%; height: 100%; object-fit: cover; }
.crop-ph {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .92);
    font-size: 2.4rem;
}

/* Status reads at a glance from the photo corner — it is the single fact that
   decides whether bidding now is even sensible. */
.crop-status {
    position: absolute;
    top: 10px;
    inset-inline-start: 10px;
    padding: .2rem .55rem;
    border-radius: 4px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .94);
    color: #1f2937;
    backdrop-filter: blur(4px);
}
.crop-status.ready { color: #047857; }
.crop-status.soon  { color: #b45309; }
.crop-status.gone  { color: #6b7280; }

.crop-body { padding: 16px 18px 4px; flex: 1; }
.crop-body h3 {
    margin: 0 0 .3rem;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #0f172a;
}
.crop-farm {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .84rem;
    font-weight: 600;
    color: var(--co-pri);
    text-decoration: none;
}
.crop-farm:hover { text-decoration: underline; }

.crop-facts {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .3rem .8rem;
    margin: .8rem 0 0;
    font-size: .82rem;
}
.crop-facts dt { color: #6b7280; display: inline-flex; align-items: center; gap: .35rem; }
.crop-facts dd { margin: 0; color: #1f2937; font-weight: 600; }
.crop-facts dd .muted { color: #9aa3af; font-weight: 500; }

/* A dot rather than a second filled chip: the photo already carries the badge, and two
   coloured pills on one small card fight each other. The colour still lands the state at
   a glance — green ready, amber coming, grey gone. */
.crop-statedot {
    display: inline-block;
    width: 7px; height: 7px;
    margin-inline-end: .4rem;
    border-radius: 50%;
    vertical-align: middle;
    background: #9aa3af;
}
.crop-statedot.ready { background: #16a34a; }
.crop-statedot.soon  { background: #d97706; }
.crop-statedot.gone  { background: #9aa3af; }

.crop-price {
    margin-top: .9rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
}
.crop-price small { font-size: .72rem; font-weight: 600; color: #6b7280; }
.crop-price.muted { font-size: .95rem; font-weight: 600; color: #6b7280; }

.crop-foot { padding: 14px 18px 18px; }

/* ---- The bid button --------------------------------------------------- */
/* An <a>, not a <button> — see _CropBidButton for why the host pages must not
   carry a form. Hence the explicit text-decoration reset. */
.cb-open {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .65rem 1rem;
    border: 0;
    border-radius: 11px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--co-pri, #16a34a), var(--co-accent, #15803d));
    color: #fff;
    font: inherit;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter .18s, transform .18s, box-shadow .18s;
}
.cb-open:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--co-pri, #16a34a) 70%, transparent);
}

/* Secondary to the bid button, not a rival to it: looking at the board is the
   optional step, placing a bid is the point of the tile. */
.cb-board {
    width: 100%;
    margin-top: .45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .45rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #55606e;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .15s, color .15s;
}
.cb-board:hover { border-color: #cbd5e1; color: #16202c; }

/* ---- Form controls, shared with the bid page -------------------------- */
.cb-field { display: block; margin-top: 14px; }
.cbp-two .cb-field { margin-top: 0; }
.cb-field > span b { color: #dc2626; font-weight: 700; }
.cb-field > span {
    display: block;
    margin-bottom: .3rem;
    font-size: .78rem;
    font-weight: 700;
    color: #475569;
}
.cb-field > span em { font-style: normal; font-weight: 500; color: #94a3b8; }

.cb-input {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .1rem .7rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
}
.cb-input:focus-within { border-color: var(--co-pri, #16a34a); }
.cb-input > i {
    font-style: normal;
    font-size: .82rem;
    font-weight: 700;
    color: #94a3b8;
    flex: 0 0 auto;
}
.cb-input input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: .55rem 0;
    font: inherit;
    font-variant-numeric: tabular-nums;
    background: transparent;
}

.cb-field textarea {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: .55rem .7rem;
    font: inherit;
    font-size: .88rem;
    resize: vertical;
    outline: 0;
}
.cb-field textarea:focus { border-color: var(--co-pri, #16a34a); }

.cb-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 14px;
    padding: .7rem .8rem;
    border-radius: 10px;
    background: color-mix(in srgb, var(--co-pri, #16a34a) 8%, #fff);
    border: 1px solid color-mix(in srgb, var(--co-pri, #16a34a) 25%, transparent);
    font-size: .82rem;
    font-weight: 700;
    color: #475569;
}
.cb-total strong {
    font-size: 1.15rem;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
}

/* How the offer compares with the asking price — the sentence that stops a
   decimal-point error reaching the farmer as a serious bid. */
.cb-vs { margin: .5rem 0 0; font-size: .78rem; font-weight: 600; }
.cb-vs.over  { color: #047857; }
.cb-vs.under { color: #b45309; }
.cb-vs.same  { color: #6b7280; }

.cb-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1.1rem;
    border-radius: 10px;
    border: 1px solid transparent;
    font: inherit;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
}
.cb-btn.ghost { background: #f1f5f9; color: #475569; }
.cb-btn.ghost:hover { background: #e2e8f0; }
.cb-btn.primary {
    background: linear-gradient(135deg, var(--co-pri, #16a34a), var(--co-accent, #15803d));
    color: #fff;
}
.cb-btn.primary:hover { filter: brightness(1.06); }

/* =====================================================================
   The bid page (/crop-bids/place/{id}) — .cbp-*

   A page rather than a dialog because an offer is made against a crop, and a
   crop needs room: photo, status, area, asking price, who else is bidding. It
   also keeps the marketplace and farm pages cacheable, since they now carry a
   link instead of a form (a form needs an antiforgery token, the token sets a
   cookie, and the public cache policy refuses to store any response with one).

   Self-contained: this page sets Layout = null, so everything it needs is here.
   ===================================================================== */
.cbp {
    margin: 0;
    background: #f6f7f9;
    color: #0f172a;
    font-family: Inter, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}
.cbp h1, .cbp h2 { font-family: "Plus Jakarta Sans", Inter, sans-serif; letter-spacing: -.02em; }
.cbp a { color: var(--co-pri, #16a34a); }

.cbp-wrap { width: min(1080px, calc(100% - 2rem)); margin-inline: auto; }

.cbp-bar { background: #fff; border-bottom: 1px solid #e5e7eb; }
.cbp-bar .cbp-wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.cbp-back {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .9rem; font-weight: 700; color: #475569; text-decoration: none;
}
.cbp-back:hover { color: #0f172a; }
.cbp-brand {
    display: inline-flex; align-items: center; gap: .5rem;
    font-weight: 800; color: #0f172a; text-decoration: none;
}
.cbp-brand-mark {
    display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 9px;
    background: linear-gradient(135deg, var(--co-pri, #16a34a), var(--co-accent, #15803d));
    color: #fff; font-size: .9rem;
}

.cbp-main { padding: 34px 0 60px; }

.cbp-head { margin-bottom: 24px; }
.cbp-eyebrow {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    color: var(--co-pri, #16a34a);
}
.cbp-head h1 { margin: .5rem 0 .3rem; font-size: 2rem; font-weight: 800; }
.cbp-head p { margin: 0; color: #64748b; font-size: .95rem; }

/* The crop sits beside the form on a desktop and above it on a phone: the thing
   being bid on should never be scrolled away from the number being typed. */
.cbp-grid { display: grid; grid-template-columns: 340px 1fr; gap: 22px; align-items: start; }
@media (max-width: 860px) { .cbp-grid { grid-template-columns: 1fr; } }

.cbp-crop, .cbp-form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px -16px rgba(15, 23, 42, .18);
}
.cbp-crop { overflow: hidden; }

.cbp-shot { position: relative; aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--co-pri, #16a34a), var(--co-accent, #15803d)); }
.cbp-shot img { width: 100%; height: 100%; object-fit: cover; }
.cbp-shot-ph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.9); font-size: 2.6rem; }

.cbp-shot img[data-zoom] { cursor: zoom-in; }

/* Affordances on the cover: a zoom mark and, when there is more than one, a
   count. Without them nothing says the photo is clickable. */
.cbp-zoom {
    position: absolute; inset-block-end: 10px; inset-inline-end: 10px;
    display: inline-grid; place-items: center; width: 32px; height: 32px;
    border-radius: 9px; background: rgba(15, 23, 42, .55); color: #fff;
    font-size: .85rem; backdrop-filter: blur(4px); pointer-events: none;
}
.cbp-count {
    position: absolute; inset-block-end: 10px; inset-inline-start: 10px;
    display: inline-flex; align-items: center; gap: .3rem;
    padding: .2rem .5rem; border-radius: 7px;
    background: rgba(15, 23, 42, .55); color: #fff;
    font-size: .72rem; font-weight: 600; backdrop-filter: blur(4px); pointer-events: none;
}

.cbp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 6px; }
.cbp-thumbs img {
    width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px;
    cursor: zoom-in; transition: opacity .15s, outline-color .15s;
    outline: 2px solid transparent; outline-offset: -2px;
}
.cbp-thumbs img:hover { opacity: .85; outline-color: var(--co-pri, #16a34a); }

/* ---- Full-size viewer ------------------------------------------------ */
.cbp-lightbox {
    position: fixed; inset: 0; z-index: 2000;
    display: grid; place-items: center; padding: 3.5rem 1rem;
    background: rgba(9, 14, 22, .92);
}
.cbp-lightbox[hidden] { display: none; }
.cbp-lb-stage { margin: 0; max-width: min(1100px, 100%); max-height: 100%; text-align: center; }
.cbp-lb-stage img {
    max-width: 100%;
    /* Leaves room for the caption under it at any viewport height. */
    max-height: calc(100vh - 8rem);
    width: auto; margin-inline: auto;
    border-radius: 10px; box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .8);
}
.cbp-lb-stage figcaption {
    margin-top: .9rem; color: rgba(255, 255, 255, .82);
    font-size: .88rem; display: flex; justify-content: center; gap: .6rem; flex-wrap: wrap;
}
.cbp-lb-stage figcaption strong { color: #fff; }
.cbp-lb-n { color: rgba(255, 255, 255, .55); font-variant-numeric: tabular-nums; }

.cbp-lb-x, .cbp-lb-nav {
    position: absolute; display: inline-grid; place-items: center;
    border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%;
    background: rgba(255, 255, 255, .1); color: #fff; cursor: pointer;
    backdrop-filter: blur(6px); transition: background .15s, border-color .15s;
}
.cbp-lb-x:hover, .cbp-lb-nav:hover { background: rgba(255, 255, 255, .22); border-color: rgba(255, 255, 255, .45); }
.cbp-lb-x { top: 1rem; inset-inline-end: 1rem; width: 42px; height: 42px; font-size: 1rem; }
.cbp-lb-nav { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.3rem; }
.cbp-lb-nav.prev { inset-inline-start: 1rem; }
.cbp-lb-nav.next { inset-inline-end: 1rem; }
[dir="rtl"] .cbp-lb-nav i { transform: scaleX(-1); }
@media (max-width: 560px) {
    .cbp-lb-nav { width: 40px; height: 40px; }
    .cbp-lb-nav.prev { inset-inline-start: .4rem; }
    .cbp-lb-nav.next { inset-inline-end: .4rem; }
}

.cbp-facts { display: grid; grid-template-columns: auto 1fr; gap: .55rem .9rem; margin: 0; padding: 16px 18px; font-size: .88rem; }
.cbp-facts dt { color: #64748b; display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.cbp-facts dd { margin: 0; text-align: end; font-weight: 600; }
.cbp-facts dd strong { font-size: 1.05rem; font-variant-numeric: tabular-nums; }
.cbp-facts dd small { color: #64748b; font-weight: 500; }
.cbp-facts .muted { color: #94a3b8; font-weight: 500; }

.cbp-note {
    margin: 0; padding: 12px 18px 18px;
    font-size: .84rem; color: #64748b;
    display: flex; gap: .4rem; align-items: flex-start;
}

.cbp-form-card { padding: 24px 26px 26px; }
@media (max-width: 520px) { .cbp-form-card { padding: 18px; } }

.cbp-sec {
    margin: 0 0 4px;
    font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    color: #94a3b8;
}
.cbp-sec:not(:first-of-type) { margin-top: 26px; padding-top: 20px; border-top: 1px solid #eef1f5; }

.cbp-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 12px; }
@media (max-width: 520px) { .cbp-two { grid-template-columns: 1fr; } }

.cbp-signed {
    margin: 12px 0 0;
    padding: .7rem .85rem;
    border-radius: 10px;
    background: #ecfdf3;
    border: 1px solid #bbf0d0;
    color: #047857;
    font-size: .86rem;
    font-weight: 600;
    display: flex; gap: .45rem; align-items: flex-start;
}

.cbp-actions { display: flex; justify-content: flex-end; gap: .6rem; margin-top: 24px; flex-wrap: wrap; }
.cbp-actions.center { justify-content: center; }
.cbp-actions .cb-btn { text-decoration: none; }

.cbp-fine {
    margin: 16px 0 0;
    font-size: .78rem; color: #94a3b8;
    display: flex; gap: .4rem; align-items: flex-start;
}

/* ---- Confirmation ----------------------------------------------------- */
.cbp-done {
    max-width: 620px; margin-inline: auto; padding: 40px 32px 34px;
    background: #fff; border: 1px solid #e5e7eb; border-radius: 20px; text-align: center;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 12px 34px -20px rgba(15, 23, 42, .25);
}
.cbp-done-mark {
    display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--co-pri, #16a34a), var(--co-accent, #15803d));
    color: #fff; font-size: 1.9rem; margin-bottom: 14px;
}
.cbp-done h1 { margin: 0 0 .5rem; font-size: 1.7rem; font-weight: 800; }
.cbp-done > p { margin: 0 auto; max-width: 44ch; color: #64748b; }

.cbp-steps { list-style: none; margin: 26px 0 4px; padding: 0; text-align: start; }
.cbp-steps li {
    display: flex; align-items: flex-start; gap: .7rem;
    padding: .6rem 0; font-size: .9rem; color: #334155;
}
.cbp-steps li + li { border-top: 1px solid #f1f5f9; }
.cbp-steps span {
    flex: 0 0 auto;
    display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%;
    background: color-mix(in srgb, var(--co-pri, #16a34a) 14%, #fff);
    color: var(--co-pri, #16a34a); font-size: .76rem; font-weight: 800;
}

.cbp-foot { padding: 22px 0 30px; color: #94a3b8; font-size: .82rem; text-align: center; }

/* =====================================================================
   Public bid board (/crop-bids/activity/{id}) — .board-*

   Same classic-ledger treatment as the Farmer portal's own bid register: a
   divided figure strip, a flat header with one accent rule beneath it,
   hairline rows, tabular figures. Both sides of the same market should read
   alike — the farmer's register and the buyer's board are the same document
   seen from two ends.
   ===================================================================== */
.board-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #d3d9e0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
}
@media (max-width: 720px) { .board-stats { grid-template-columns: repeat(2, 1fr); } }
.board-stat { padding: .85rem 1.1rem; border-right: 1px solid #edf0f3; }
.board-stat:last-child { border-right: 0; }
@media (max-width: 720px) {
    .board-stat:nth-child(2) { border-right: 0; }
    .board-stat:nth-child(-n+2) { border-bottom: 1px solid #edf0f3; }
}
.board-stat-label {
    font-size: .65rem; font-weight: 700; letter-spacing: .07em;
    text-transform: uppercase; color: #949fac; margin-bottom: .15rem;
}
.board-stat-value { font-size: 1.35rem; font-weight: 700; color: #16202c; font-variant-numeric: tabular-nums; line-height: 1.2; }
.board-stat-value.green { color: #047857; }

.board-sheet { background: #fff; border: 1px solid #d3d9e0; border-radius: 14px; overflow: hidden; }

.board-head {
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; flex-wrap: wrap; padding: .9rem 1.1rem; border-bottom: 1px solid #edf0f3;
}
.board-title { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #949fac; }
.board-privacy { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; color: #55606e; }

.board-scroll { overflow-x: auto; }
.board-grid { width: 100%; border-collapse: collapse; font-size: .875rem; color: #16202c; }
.board-grid thead th {
    background: #f4f6f8; color: #16202c;
    font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
    padding: .7rem .9rem; border: 0; border-bottom: 2px solid #16202c;
    text-align: left; white-space: nowrap;
}
.board-grid td { padding: .8rem .9rem; border: 0; border-bottom: 1px solid #edf0f3; white-space: nowrap; }
.board-grid tbody tr:last-child td { border-bottom: 0; }
.board-grid tbody tr:hover td { background: #fafbfc; }
.board-grid .num { text-align: right; font-variant-numeric: tabular-nums; }
.board-grid .strong { font-weight: 700; font-size: .96rem; }
.board-grid .when { color: #949fac; font-size: .8rem; }
.board-grid .rank { color: #949fac; font-variant-numeric: tabular-nums; }

/* The leading offer is the one fact a visitor came for, so it is the one row
   that gets any emphasis at all. */
.board-grid tbody tr.is-top td { background: #fbfdfc; }
.board-grid tbody tr.is-top .strong { color: #047857; }
.board-grid tbody tr.is-accepted td:first-child { box-shadow: inset 3px 0 0 0 #047857; }

.board-who { font-weight: 700; letter-spacing: .04em; }
.board-verified, .board-public {
    display: inline-flex; align-items: center; gap: .2rem;
    margin-inline-start: .4rem; font-size: .68rem; font-weight: 600;
}
.board-verified { color: #047857; }
.board-public { color: #949fac; }

.board-chip {
    display: inline-flex; padding: .15rem .45rem; border: 1px solid transparent; border-radius: 3px;
    font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
}
.board-chip.open { background: #fffaeb; border-color: #f6dfae; color: #b45309; }
.board-chip.accepted { background: #ecfdf3; border-color: #bbe8cd; color: #047857; }
.board-chip.declined { background: #fef3f2; border-color: #f7d3cf; color: #b91c1c; }
.board-chip.withdrawn { background: #f6f8fa; border-color: #e4e9ee; color: #55606e; }

.board-foot {
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; flex-wrap: wrap; padding: 1rem 1.1rem; border-top: 1px solid #edf0f3;
    font-size: .86rem; color: #55606e;
}
.board-foot .cb-btn { text-decoration: none; }

.board-empty { padding: 3.5rem 1.5rem; text-align: center; color: #949fac; }
.board-empty i { font-size: 2rem; margin-bottom: .6rem; }
.board-empty p { margin: 0 0 1.1rem; }
.board-empty .cb-btn { display: inline-flex; width: auto; text-decoration: none; }

/* ---- Result banner ---------------------------------------------------- */
.cb-flash {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin: 0 0 20px;
    padding: .8rem 1rem;
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 600;
}
.cb-flash.ok  { background: #ecfdf3; border: 1px solid #bbf0d0; color: #047857; }
.cb-flash.bad { background: #fef3f2; border: 1px solid #fcd2cd; color: #b91c1c; }
