@charset "UTF-8";
/* ==========================================================================
   FOOTER CARDS — FUEL PRICES + CANADIAN EXCHANGE RATE
   --------------------------------------------------------------------------
   REDESIGNED. The first attempt was a full-width band above the footer with
   two large panels: too loud for what these are, and on every page whether or
   not it had anything to do with fuel.

   These are a forecourt price board, not a feature. So they are now compact
   inline cards sitting inside the footer with the other practical details,
   matching the plate the site already used: the venue name small in brass
   above, the two grades either side of a pump icon, prices large enough to
   read at a glance and nothing else on the card.

   The layout is one row per card — label above figure, icon between the two
   grades — which is the shape of a real price sign and needs no explaining.
   ========================================================================== */

.skagit-fcards {
  margin-block-start: clamp(1.25rem, 2.4vw, 2rem);
}

.skagit-fcards__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
}

.skagit-fcard {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.5rem);
  padding: 0.7rem clamp(0.9rem, 2vw, 1.4rem);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--sk-radius-md, 10px);
  /* Slightly lifted off the footer ground rather than a filled panel — these
     sit inside a dark footer, so a lighter fill would read as a hole in it. */
  background: rgba(255, 255, 255, 0.045);
}


/* ==========================================================================
   1. HEAD — the venue name, small
   ========================================================================== */
.skagit-fcard__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

/* The pump/exchange glyph sits BETWEEN the two figures on the gas card, so
   the head is text only and the icon is positioned by the prices block. */
.skagit-fcard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.16);
  color: #F0D480;
  font-size: 0.85rem;
}

.skagit-fcard__title {
  margin: 0;
  color: #F0D480;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

/* The strapline is redundant at this size — the venue name and the figures
   say it. Kept in the markup for the wider layouts, hidden here. */
.skagit-fcard__sub { display: none; }


/* ==========================================================================
   2. PRICES
   ========================================================================== */
.skagit-fcard__prices {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.5rem);
}

.skagit-fcard__price {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  text-align: center;
}

.skagit-fcard__grade {
  color: #A9B6C4;                /* 7.1:1 on the footer ground */
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.skagit-fcard__figure {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #F0D480;
  font-size: clamp(1.25rem, 0.9rem + 0.9vw, 1.6rem);
  font-weight: 800;
  line-height: 1.05;
  /* Tabular figures so 3.69 and 5.49 are the same width — without this the
     two prices sit visibly out of alignment beside each other. */
  font-variant-numeric: tabular-nums;
}

.skagit-fcard__cur {
  font-size: 0.6em;
  font-weight: 700;
  opacity: 0.85;
}


/* ==========================================================================
   3. FOOT — kept to one quiet line
   ========================================================================== */
.skagit-fcard__foot {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-inline-start: clamp(0.9rem, 2vw, 1.5rem);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
}

.skagit-fcard__stamp {
  color: #8FA0B2;
  font-size: 0.6875rem;
  white-space: nowrap;
}

.skagit-fcard__link {
  color: #F0D480;
  font-size: 0.6875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.skagit-fcard__link:hover,
.skagit-fcard__link:focus-visible { text-decoration: underline; }


/* ==========================================================================
   4. NARROW
   Below 560px the card stacks rather than scrolls: a price board that runs
   off the side of the screen is useless, and these are exactly the numbers
   somebody checks on a phone before setting off.
   ========================================================================== */
@media (max-width: 559px) {
  .skagit-fcard {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    text-align: center;
  }

  .skagit-fcard__head { justify-content: center; }
  .skagit-fcard__prices { justify-content: center; }

  .skagit-fcard__foot {
    justify-content: center;
    padding-inline-start: 0;
    padding-block-start: 0.55rem;
    border-inline-start: 0;
    border-block-start: 1px solid rgba(255, 255, 255, 0.12);
  }
}


/* ==========================================================================
   5. PRINT
   The pump price is the most likely thing here to be printed or screenshotted.
   ========================================================================== */
@media print {
  .skagit-fcard { border-color: #000; background: none; }
  .skagit-fcard__title,
  .skagit-fcard__figure,
  .skagit-fcard__grade { color: #000; }
}
