/*
Theme Name: Menwoskill
Theme URI: https://menwoskill.com
Author: Menwoskill
Author URI: https://menwoskill.com
Description: Custom sportswear & uniform manufacturer theme. Editable product catalogue (with images), interactive size charts, and a built-in quote builder with logo upload. Add products and change images from the dashboard.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: menwoskill
Tags: business, portfolio, custom-colors, custom-menu, featured-images, full-width-template
*/

/* ============================================================
   APEX TEAMWEAR — design system
   Aesthetic: technical apparel spec-sheet. Condensed athletic
   display type + mono data. Ink on paper, disciplined sport-red.
   To rebrand: change --brand vars + the logo text in the HTML.
   ============================================================ */

:root {
  /* palette */
  --paper:   #F2F0EA;   /* warm off-white base */
  --paper-2: #E7E4DB;   /* panel tint */
  --ink:     #14171C;   /* near-black */
  --ink-2:   #3A404A;   /* graphite */
  --line:    #C9C5B9;   /* hairline on paper */
  --line-2:  #2A2F37;   /* hairline on ink */
  --sport:   #E23B2E;   /* athletic red accent */
  --sport-d: #B62A20;
  --steel:   #1B7F9E;   /* cool secondary, sparing */
  --ok:      #1E8E5A;

  /* type */
  --display: "Archivo", system-ui, sans-serif;
  --body:    "Inter", system-ui, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --gutter: clamp(18px, 4vw, 56px);
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { margin: 0; font-family: var(--display); font-weight: 800; line-height: .98; letter-spacing: -0.01em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.mono { font-family: var(--mono); }
.eyebrow {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--sport); font-weight: 500;
  display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--sport); display: inline-block; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; font-size: .9rem;
  padding: 14px 22px; border: 2px solid var(--ink); border-radius: var(--radius);
  background: var(--ink); color: var(--paper);
  transition: transform .12s ease, background .15s ease, color .15s ease;
}
.btn:hover { background: var(--sport); border-color: var(--sport); color: #fff; transform: translateY(-2px); }
.btn--sport { background: var(--sport); border-color: var(--sport); color: #fff; }
.btn--sport:hover { background: var(--sport-d); border-color: var(--sport-d); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--sm { padding: 9px 14px; font-size: .78rem; }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--steel); outline-offset: 2px;
}

/* ---------- header ---------- */
.top {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.top__bar { display: flex; align-items: center; gap: 28px; height: 68px; }
.logo { display: flex; align-items: baseline; gap: 2px; font-family: var(--display); font-weight: 900; font-size: 1.35rem; letter-spacing: -.02em; text-transform: uppercase; }
.logo b { color: var(--sport); }
.logo span { font-family: var(--mono); font-size: .58rem; letter-spacing: .2em; color: var(--ink-2); font-weight: 400; align-self: center; margin-left: 8px; border: 1px solid var(--line); padding: 2px 6px; border-radius: 2px; }
.nav { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.nav a { font-family: var(--mono); font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); transition: color .15s; }
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active { color: var(--sport); }
.nav a.btn.active { color: #fff; }        /* CTA button keeps white text on active page */
.nav__cta { margin-left: 4px; }
.burger { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: var(--radius); }
.burger span, .burger span::before, .burger span::after { content:""; display:block; width: 20px; height: 2px; background: var(--ink); margin: 0 auto; position: relative; transition: .2s; }
.burger span::before { position: absolute; top: -6px; } .burger span::after { position: absolute; top: 6px; }

@media (max-width: 860px) {
  .nav { position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 20px; gap: 0;
    transform: translateY(-120%); transition: transform .25s ease; margin-left: 0; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
  .nav__cta { margin-top: 12px; }
  .burger { display: block; }
}

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(48px, 8vw, 96px) 0 0; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px,4vw,56px); align-items: end; }
.hero__num {
  position: absolute; right: -2vw; top: -4vw; font-family: var(--display); font-weight: 900;
  font-size: clamp(220px, 40vw, 560px); line-height: .8; color: var(--paper-2);
  z-index: 0; pointer-events: none; letter-spacing: -.04em;
}
.hero__inner { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.7rem, 8vw, 6.2rem); text-transform: uppercase; letter-spacing: -.02em; }
.hero h1 em { font-style: normal; color: var(--sport); }
.hero__lead { max-width: 46ch; margin: 22px 0 28px; font-size: 1.08rem; color: var(--ink-2); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__panel {
  position: relative; z-index: 2; border: 1.5px solid var(--ink); border-radius: var(--radius);
  background: var(--ink); color: var(--paper); padding: 0; overflow: hidden;
}
.hero__panel .swatch { height: 190px; display: grid; place-items: center; background:
  repeating-linear-gradient(45deg, var(--line-2) 0 14px, #171b21 14px 28px); }
.hero__spec { padding: 18px 20px; font-family: var(--mono); font-size: .78rem; }
.hero__spec div { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--line-2); }
.hero__spec div:last-child { border-bottom: 0; }
.hero__spec span:last-child { color: #fff; }
.marquee {
  margin-top: clamp(40px,6vw,72px); border-block: 1.5px solid var(--ink); overflow: hidden;
  background: var(--ink); color: var(--paper);
}
.marquee__track { display: inline-flex; gap: 42px; white-space: nowrap; padding: 12px 0;
  font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  animation: scroll 32s linear infinite; }
.marquee__track b { color: var(--sport); -webkit-text-stroke: 0; }
.marquee__track span { opacity: .55; }
@keyframes scroll { to { transform: translateX(-50%); } }

@media (max-width: 820px){ .hero__grid { grid-template-columns: 1fr; } .hero__panel { display: none; } }

/* ---------- section frame ---------- */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tint { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink .eyebrow { color: #fff; } .section--ink .eyebrow::before { background:#fff; }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section__head h2 { font-size: clamp(2rem, 5vw, 3.4rem); text-transform: uppercase; }
.section__head p { max-width: 40ch; color: var(--ink-2); margin: 10px 0 0; }
.section--ink .section__head p { color: #b9bdc5; }

/* ---------- category cards ---------- */
.cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cat {
  position: relative; background: var(--paper); padding: 26px 24px 22px; min-height: 260px;
  display: flex; flex-direction: column; justify-content: space-between; transition: background .2s;
}
.cat:hover { background: #fff; }
.cat__idx { font-family: var(--mono); font-size: .72rem; color: var(--ink-2); letter-spacing: .1em; }
.cat__art { height: 120px; margin: 6px 0 14px; display: grid; place-items: center; }
.cat__art svg { height: 100%; width: auto; }
.cat h3 { font-size: 1.35rem; text-transform: uppercase; }
.cat p { font-size: .84rem; color: var(--ink-2); margin: 6px 0 0; }
.cat__go { position: absolute; top: 22px; right: 22px; font-family: var(--mono); color: var(--sport); font-size: 1rem; transition: transform .2s; }
.cat:hover .cat__go { transform: translate(3px,-3px); }

/* ---------- product grid ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.chip {
  font-family: var(--mono); font-size: .76rem; text-transform: uppercase; letter-spacing: .06em;
  padding: 9px 15px; border: 1.5px solid var(--ink); border-radius: 40px; background: transparent; color: var(--ink);
  transition: .15s;
}
.chip:hover { background: var(--paper-2); }
.chip.active { background: var(--ink); color: var(--paper); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: 18px; }
.card {
  border: 1.5px solid var(--ink); border-radius: var(--radius); background: var(--paper); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .14s ease, box-shadow .14s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 8px 8px 0 var(--ink); }
.card__media { aspect-ratio: 4/3.4; display: block; background: var(--paper-2); border-bottom: 1.5px solid var(--ink); position: relative; overflow: hidden; }
.card__media svg, .card__media img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.card__media svg { object-fit: cover; }
.card__tag { position: absolute; top: 10px; left: 10px; font-family: var(--mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; background: var(--ink); color: var(--paper); padding: 4px 8px; border-radius: 2px; }
.card__body { padding: 14px 15px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card__sku { font-family: var(--mono); font-size: .68rem; color: var(--ink-2); letter-spacing: .08em; }
.card__body h3 { font-size: 1.12rem; text-transform: uppercase; }
.card__body p { font-size: .8rem; color: var(--ink-2); margin: 2px 0 12px; flex: 1; }
.card__foot { display: flex; gap: 8px; }
.card__foot .btn { flex: 1; justify-content: center; }

/* ---------- feature strip ---------- */
.strip { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 2px; background: var(--line-2); border: 1.5px solid var(--line-2); border-radius: var(--radius); }
.strip > div { background: var(--ink); padding: 26px 22px; }
.strip .n { font-family: var(--display); font-weight: 900; font-size: 2.6rem; color: var(--sport); line-height: 1; }
.strip h4 { font-family: var(--mono); font-weight: 500; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin: 12px 0 6px; }
.strip p { font-size: .82rem; color: #aab0b9; margin: 0; }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 20px; }
.step { border-top: 3px solid var(--ink); padding-top: 16px; }
.step .k { font-family: var(--mono); color: var(--sport); font-size: .8rem; letter-spacing: .1em; }
.step h4 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 1.15rem; margin: 8px 0 6px; }
.step p { font-size: .85rem; color: var(--ink-2); margin: 0; }

/* ---------- fabric swatches ---------- */
.fabrics { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 14px; }
.fab { border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.fab__sw { height: 96px; }
.fab__t { padding: 12px 14px; }
.fab__t b { font-family: var(--display); text-transform: uppercase; font-size: .98rem; display: block; }
.fab__t span { font-family: var(--mono); font-size: .72rem; color: var(--ink-2); }

/* ---------- size chart ---------- */
.sizewrap { border: 1.5px solid var(--ink); border-radius: var(--radius); overflow: hidden; }
.sizebar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--ink); color: var(--paper); }
.sizebar__l { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.sizebar select { font-family: var(--mono); font-size: .82rem; padding: 8px 10px; border: 1px solid var(--line-2); background: #1c2128; color: #fff; border-radius: 3px; }
.unit { display: inline-flex; border: 1px solid var(--line-2); border-radius: 3px; overflow: hidden; }
.unit button { background: #1c2128; color: #aab0b9; border: 0; padding: 8px 14px; font-family: var(--mono); font-size: .78rem; }
.unit button.active { background: var(--sport); color: #fff; }
.sizetable { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: .82rem; background: var(--paper); }
.sizetable th, .sizetable td { padding: 12px 10px; text-align: center; border-bottom: 1px solid var(--line); }
.sizetable thead th { background: var(--paper-2); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }
.sizetable tbody th { text-align: left; background: var(--paper-2); text-transform: uppercase; }
.sizetable tr:last-child td { border-bottom: 0; }
.sizenote { padding: 12px 16px; font-family: var(--mono); font-size: .72rem; color: var(--ink-2); background: var(--paper-2); border-top: 1px solid var(--line); }

/* ---------- quote builder ---------- */
.quote { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 940px){ .quote { grid-template-columns: 1fr; } }
.panel { border: 1.5px solid var(--ink); border-radius: var(--radius); background: var(--paper); }
.panel__h { padding: 16px 18px; border-bottom: 1.5px solid var(--ink); display: flex; align-items: center; gap: 10px; background: var(--paper-2); }
.panel__h .k { font-family: var(--mono); color: var(--sport); font-size: .8rem; }
.panel__h h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.15rem; }
.panel__b { padding: 18px; }

.field { margin-bottom: 16px; }
.field > label { display: block; font-family: var(--mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-2); margin-bottom: 6px; }
.field .req { color: var(--sport); }
input[type=text], input[type=email], input[type=tel], input[type=number], select, textarea {
  width: 100%; font-family: var(--body); font-size: .95rem; padding: 11px 12px;
  border: 1.5px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { border-color: var(--ink); }
textarea { resize: vertical; min-height: 84px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width:520px){ .row2 { grid-template-columns: 1fr; } }

.additem { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: end; }
.lineitems { margin: 4px 0 8px; display: flex; flex-direction: column; gap: 12px; }
.li { border: 1.5px solid var(--line); border-radius: var(--radius); padding: 14px; background: #fff; position: relative; }
.li__top { display: flex; justify-content: space-between; align-items: start; gap: 10px; margin-bottom: 10px; }
.li__top b { font-family: var(--display); text-transform: uppercase; font-size: 1.02rem; }
.li__top .sku { font-family: var(--mono); font-size: .68rem; color: var(--ink-2); }
.li__rm { border: 1px solid var(--line); background: var(--paper); border-radius: 3px; width: 30px; height: 30px; font-family: var(--mono); color: var(--sport); }
.li__rm:hover { background: var(--sport); color: #fff; border-color: var(--sport); }
.sizes { display: grid; grid-template-columns: repeat(auto-fit,minmax(58px,1fr)); gap: 7px; }
.sizes label { display: flex; flex-direction: column; gap: 3px; font-family: var(--mono); font-size: .66rem; text-transform: uppercase; color: var(--ink-2); text-align: center; }
.sizes input { padding: 7px 4px; text-align: center; font-family: var(--mono); }
.li__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.li__qty { margin-top: 10px; font-family: var(--mono); font-size: .78rem; color: var(--ink); display: flex; justify-content: space-between; border-top: 1px dashed var(--line); padding-top: 8px; }
.li__qty b { color: var(--sport); }

.drop { border: 2px dashed var(--line); border-radius: var(--radius); padding: 22px; text-align: center; background: #fff; transition: .15s; cursor: pointer; }
.drop:hover, .drop.drag { border-color: var(--sport); background: #fff8f7; }
.drop .ic { font-family: var(--mono); font-size: 1.6rem; color: var(--sport); }
.drop p { margin: 8px 0 2px; font-size: .9rem; }
.drop small { font-family: var(--mono); font-size: .7rem; color: var(--ink-2); }
.preview { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.preview__i { width: 74px; height: 74px; border: 1.5px solid var(--line); border-radius: 3px; object-fit: contain; background: #fff; position: relative; }
.filepill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: .74rem; border: 1.5px solid var(--line); border-radius: 40px; padding: 6px 12px; background:#fff; }
.filepill button { border: 0; background: none; color: var(--sport); font-family: var(--mono); }

/* summary (sticky) */
.summary { position: sticky; top: 84px; }
.sum__line { display: flex; justify-content: space-between; font-family: var(--mono); font-size: .8rem; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.sum__line span:first-child { color: var(--ink-2); }
.sum__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; padding-top: 14px; border-top: 2px solid var(--ink); }
.sum__total .l { font-family: var(--mono); font-size: .78rem; text-transform: uppercase; color: var(--ink-2); }
.sum__total .v { font-family: var(--display); font-weight: 900; font-size: 2rem; }
.sum__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.sum__actions .btn { justify-content: center; }
.sendrow { display: flex; gap: 8px; }
.sendrow .btn { flex:1; justify-content:center; }
.hint { font-family: var(--mono); font-size: .7rem; color: var(--ink-2); margin-top: 10px; line-height: 1.5; }

.toast { position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 120%); background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: .82rem; padding: 14px 20px; border-radius: var(--radius); z-index: 200; transition: transform .3s; border: 1.5px solid var(--sport); }
.toast.show { transform: translate(-50%, 0); }
.empty { font-family: var(--mono); font-size: .82rem; color: var(--ink-2); text-align: center; padding: 22px; border: 1.5px dashed var(--line); border-radius: var(--radius); }

/* ---------- contact / footer ---------- */
.contactgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px){ .contactgrid { grid-template-columns: 1fr; } }
.info b { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sport); display:block; margin-bottom: 4px; }
.info p { margin: 0 0 20px; }
.info a { border-bottom: 1px solid var(--line); }

footer.foot { background: var(--ink); color: var(--paper); padding: 56px 0 26px; }
.foot__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 32px; }
@media (max-width: 800px){ .foot__grid { grid-template-columns: 1fr 1fr; } }
.foot h5 { font-family: var(--mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 9px; }
.foot a { color: #aab0b9; font-size: .88rem; }
.foot a:hover { color: #fff; }
.foot__brand p { color: #aab0b9; font-size: .88rem; max-width: 34ch; }
.foot__bottom { border-top: 1px solid var(--line-2); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: var(--mono); font-size: .72rem; color: #7f858e; }

/* WhatsApp float */
.wa { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,.25); border: 0; }
.wa svg { width: 30px; height: 30px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

.pagehead { padding: clamp(40px,6vw,72px) 0 0; }
.pagehead h1 { font-size: clamp(2.4rem,7vw,4.8rem); text-transform: uppercase; }
.pagehead p { color: var(--ink-2); max-width: 52ch; margin-top: 14px; }
.crumbs { font-family: var(--mono); font-size: .72rem; color: var(--ink-2); letter-spacing: .06em; margin-bottom: 14px; }
.crumbs a { color: var(--sport); }

/* ---------- WordPress additions ---------- */
.card__media img, .card__media .wp-post-image, .card__media .mw-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.custom-logo { max-height: 46px; width: auto; }
.admin-bar .top { top: 32px; }
@media (max-width: 782px){ .admin-bar .top { top: 46px; } }
.mw-cat-block { margin-bottom: 56px; scroll-margin-top: 90px; }

/* ---------- Category banners ---------- */
.cat__art { overflow: hidden; }
.cat__art .cat__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-banner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.cat-banner img { width: 100%; height: clamp(150px, 22vw, 260px); object-fit: cover; border: 1.5px solid var(--ink); border-radius: 6px; display: block; }
