/* =========================================
   Cloud 9 Digital — Mobile Responsive CSS
   Touch-optimised cross-device edition
   ========================================= */

/* ---- Scroll / touch / overscroll — mobile only, keep desktop native ---- */
@media (max-width: 880px) {
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
  }

  body {
    overscroll-behavior-y: contain;
  }

  /* dvh-aware hero — fixes iOS Safari address-bar collapse */
  .hero {
    min-height: 100dvh;
    min-height: 100svh;
  }
}

/* Touch-action: kill 300ms tap delay + prevent double-tap zoom.
   Only delivered to coarse-pointer devices (phones, tablets).
   Desktop mice and trackpads are unaffected. */
@media (pointer: coarse) {
  a, button, [role="button"], .btn, .pill, .card, .lab, .partner,
  .nav-links a, .mob-links a, .mob-sub a, .nav-cta, .mob-cta,
  .work-card, .work-link, .email-pill, .foot-col a, .hamburger,
  .dot, .process-progress .dot, .topbar-link, .read-more,
  .foot-cta, .nav-dd-inner a, .wire-item.is-link, .view-all-link,
  .method-repo-link {
    touch-action: manipulation;
  }
}

/* Low-contrast tap highlight — safe globally (not a layout property) */
body { -webkit-tap-highlight-color: transparent; }
a, button, [role="button"], .btn, .pill, .card, .lab, .partner,
.nav-links a, .mob-links a, .mob-sub a, .nav-cta, .mob-cta,
.work-card, .work-link, .email-pill, .foot-col a, .hamburger,
.dot, .process-progress .dot, .topbar-link, .read-more,
.foot-cta, .nav-dd-inner a, .wire-item.is-link, .view-all-link,
.method-repo-link {
  -webkit-tap-highlight-color: transparent;
}

/* ---- Hamburger button ---------------------------------- */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 200;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  position: absolute;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.hamburger span:nth-child(1) { transform: translateY(-5px); }
.hamburger span:nth-child(2) { transform: translateY(0); }
.hamburger span:nth-child(3) { transform: translateY(5px); }

.hamburger.is-open span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* ---- Mobile nav overlay --------------------------------- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(21, 20, 15, 0.35);
  z-index: 180;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Mobile nav panel ---------------------------------- */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--paper);
  z-index: 190;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  box-shadow: -8px 0 40px rgba(21, 20, 15, 0.12);
}
.mobile-nav-panel.is-open {
  transform: translateX(0);
}
.mobile-nav-panel .mob-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
  text-decoration: none;
}
.mobile-nav-panel .mob-brand .brand-mark {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  flex-shrink: 0;
}
.mobile-nav-panel .mob-brand span {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.mobile-nav-panel .mob-links {
  list-style: none;
  padding: 0 24px;
  flex: 1;
}
.mobile-nav-panel .mob-links li {
  border-bottom: 1px solid var(--line-faint);
}
.mobile-nav-panel .mob-links > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.mobile-nav-panel .mob-links > li > a:active {
  color: var(--coral);
}
.mobile-nav-panel .mob-links .has-sub > a::after {
  content: '+';
  font-family: var(--mono);
  font-size: 18px;
  color: var(--ink-faint);
  transition: transform 0.22s ease;
}
.mobile-nav-panel .mob-links .has-sub.is-expanded > a::after {
  content: '\2212';
  color: var(--coral);
}
.mobile-nav-panel .mob-sub {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-nav-panel .mob-links .has-sub.is-expanded .mob-sub {
  max-height: 300px;
}
.mobile-nav-panel .mob-sub li a {
  display: block;
  padding: 10px 0 10px 16px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
}
.mobile-nav-panel .mob-sub li a:active {
  color: var(--coral);
}

.mobile-nav-panel .mob-footer {
  padding: 20px 24px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-panel .mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.mobile-nav-panel .mob-cta:active {
  background: #e25e4a;
}
.mobile-nav-panel .mob-meta {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
}

/* Lock body scroll when mobile nav is open */
body.mob-nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* =========================================
   BREAKPOINT: 1200px — Tablets / small laptops
   ========================================= */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .work-slab { margin: 0 32px; padding: 90px 32px; }
  .hero h1 { font-size: clamp(40px, 5.4vw, 58px); }
}

/* =========================================
   BREAKPOINT: 1024px — Landscape tablets
   ========================================= */
@media (max-width: 1024px) {
  .hero-grid { gap: 28px; }
  .labs-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .partners { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .work-grid { gap: 32px; }
  .foot-grid { gap: 28px; }
}

/* =========================================
   BREAKPOINT: 880px — Show hamburger
   ========================================= */
@media (max-width: 880px) {
  .hamburger { display: inline-flex; }
  .mobile-nav-overlay,
  .mobile-nav-panel { display: block; }

  .side-rail { display: none; }

  .container { padding: 0 20px; }

  .hero { min-height: 100dvh; min-height: 100svh; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-art {
    height: auto;
    max-height: none;
    max-width: 100%;
    aspect-ratio: 1 / 0.78;
    overflow: hidden;
  }
  .process-phase { backface-visibility: hidden; -webkit-backface-visibility: hidden; }
  .process-phase.active { will-change: opacity; }
  .process-phase img { transform: none !important; transition: none !important; }
  .hero h1 {
    font-size: clamp(36px, 6vw, 48px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* 880px grid collapses */
  .about-grid, .capabilities-grid, .testimonial-grid, .cta-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .labs-head, .method-head { grid-template-columns: 1fr; }
  .labs-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .method-grid::before { display: none; }

  .work-slab { margin: 0 12px; padding: 60px 24px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card.alt { transform: rotate(2deg) translateY(12px); padding: 28px 24px; }
  .work-card.alt:hover { transform: rotate(2deg) translateY(8px); }

  .partners { grid-template-columns: repeat(3, 1fr); gap: 18px; }

  .cta-art { max-width: 100%; margin-left: 0; }
  .about-art { max-width: 100%; margin-left: 0; }
  .capabilities-art { max-width: 100%; }
  .testimonial-art { max-width: 100%; }

  .nav-links, .brand-meta, .nav-cta { display: none; }

  .nav-side { gap: 12px; }
  .nav-inner { gap: 16px; }

  .wire-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .wire-left {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 12px;
    min-height: 0;
  }

  .foot-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 28px;
  }
  .foot-grid .foot-col:nth-child(4),
  .foot-grid .foot-col:nth-child(5) { display: none; }

  .conv-strip-mid {
    margin: 0 16px !important;
    padding: 22px 24px !important;
  }

  .annot { font-size: 9px; }

  .nav { padding: 14px 0; }
  .topbar-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; }
  .topbar-inner::-webkit-scrollbar { display: none; }

  /* Section rules — allow gentle wrapping at tablet width */
  .sec-rule {
    flex-wrap: wrap;
    gap: 6px 18px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .sec-rule .meta-grp {
    flex-wrap: wrap;
    gap: 4px 14px;
    font-size: 10px;
  }
  .sec-rule > span:last-child {
    margin-left: auto;
    font-size: 10px;
  }

  /* Work rule (dark slab) — same approach */
  .work-rule {
    flex-wrap: wrap;
    gap: 6px 18px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .work-rule .meta-grp {
    flex-wrap: wrap;
    gap: 4px 14px;
    font-size: 10px;
  }
  .work-rule > span:last-child {
    margin-left: auto;
    font-size: 10px;
  }

  /* Hide ribbons at tablet */
  .capabilities-art .ribbon,
  .cta-art .ribbon {
    display: none;
  }

  /* About footer row */
  .about .footer-row {
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .about .footer-row .stamp {
    margin-left: 0;
    flex-direction: row;
    gap: 10px;
  }
}

/* =========================================
   BREAKPOINT: 744px — Foldable / small tablet
   ========================================= */
@media (max-width: 744px) {
  .container { padding: 0 18px; }
  .hero-art { aspect-ratio: 1 / 0.82; }
  .work-slab { margin: 0 8px; padding: 50px 20px; border-radius: 24px; }
  .labs-grid { gap: 16px; }
  .pills { justify-content: flex-start; gap: 8px; }
  .pill { font-size: 12px; padding: 8px 14px; }

  /* Section rules — allow gentle wrapping before full stack at 560px */
  .sec-rule {
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 10px;
  }
  .sec-rule .meta-grp {
    flex-wrap: wrap;
    gap: 4px 12px;
    font-size: 10px;
  }
  .sec-rule > span:last-child {
    margin-left: auto;
    font-size: 10px;
  }

  /* Work rule (dark slab) */
  .work-rule {
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 9.5px;
  }
  .work-rule .meta-grp {
    flex-wrap: wrap;
    gap: 4px 12px;
    font-size: 9.5px;
  }
  .work-rule > span:last-child {
    margin-left: auto;
    font-size: 9.5px;
  }

  /* Labs foot */
  .labs-foot {
    gap: 16px;
    margin-top: 36px;
  }
  .labs-foot .meta {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-align: right;
  }

  /* Hide ribbons on small tablets */
  .capabilities-art .ribbon,
  .cta-art .ribbon {
    display: none;
  }

  /* About footer row */
  .about .footer-row {
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 40px;
    font-size: 10px;
  }
  .about .footer-row .stamp {
    margin-left: 0;
    flex-direction: row;
    gap: 10px;
  }
}

/* =========================================
   BREAKPOINT: 560px — Smaller phones
   ========================================= */
@media (max-width: 560px) {
  .container { padding: 0 16px; }

  .hero h1 { font-size: 32px; line-height: 1.04; }
  .hero .lead { font-size: 14.5px; }
  .hero-art { aspect-ratio: 1 / 0.88; }
  .hero-stats { gap: 14px; flex-wrap: wrap; }
  .hero-stats .stat { gap: 6px; }

  .section-header h2 { font-size: clamp(28px, 8vw, 40px); }

  .labs-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }

  .method-grid { grid-template-columns: 1fr; gap: 40px; }
  .method-step .num { font-size: 56px; }
  .method-step h4 { font-size: 24px; }

  .work-slab { margin: 0 8px; padding: 48px 16px; border-radius: 22px; }
  .work-card { padding: 24px 20px; }
  .work-card.alt { transform: rotate(1deg) translateY(10px); padding: 24px 20px; }
  .work-card.alt:hover { transform: rotate(1deg) translateY(8px); }
  .work-card h3 { font-size: clamp(22px, 5vw, 28px); }
  .work-copy h2 { font-size: clamp(28px, 7vw, 42px); }

  .partners { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .partner .glyph { height: 28px; }

  .testimonial-copy h2 { font-size: clamp(26px, 6vw, 36px); }
  .cta h2 { font-size: clamp(36px, 10vw, 56px); }

  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid .foot-col:nth-child(4),
  .foot-grid .foot-col:nth-child(5) { display: block; }
  .foot-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    font-size: 10px;
  }
  .foot-bottom .right {
    flex-wrap: wrap;
    gap: 12px;
  }

  .conv-strip {
    font-size: 12px;
    padding: 16px 12px;
    line-height: 1.5;
  }
  .conv-strip-mid {
    margin: 0 12px !important;
    padding: 18px 20px !important;
  }

  /* Buttons — full width on small screens */
  .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .email-pill {
    width: 100%;
    justify-content: center;
  }

  .brand { font-size: 15px; }
  .brand .brand-mark { width: 30px; height: 30px; font-size: 14px; }

  .topbar-inner { font-size: 9px; gap: 12px; }
  .topbar-inner .mid { display: none; }
  .topbar-inner .right { gap: 10px; }

  .annot { display: none; }

  /* Section rules — stack cleanly on small phones */
  .sec-rule {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .sec-rule .meta-grp {
    flex-wrap: wrap;
    gap: 4px 10px;
    font-size: 10px;
  }
  .sec-rule > span:last-child {
    align-self: flex-end;
    font-size: 10px;
  }
  .sec-rule .roman { font-size: 13px; }

  /* Work rule (dark slab) — same stacking approach */
  .work-rule {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 9.5px;
  }
  .work-rule .meta-grp {
    flex-wrap: wrap;
    gap: 4px 10px;
    font-size: 9.5px;
  }
  .work-rule > span:last-child {
    align-self: flex-end;
    font-size: 9.5px;
  }
  .work-rule .roman { font-size: 13px; }

  /* Labs foot — stack vertically */
  .labs-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 36px;
    padding-top: 18px;
  }
  .labs-foot .meta {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  /* Hide decorative vertical ribbons on mobile */
  .capabilities-art .ribbon,
  .cta-art .ribbon {
    display: none;
  }

  /* About footer row — allow clean wrapping */
  .about .footer-row {
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 36px;
    font-size: 10px;
  }
  .about .footer-row .mark {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  .about .footer-row .stamp {
    margin-left: 0;
    width: 100%;
    flex-direction: row;
    gap: 12px;
    font-size: 9px;
  }
}

/* =========================================
   BREAKPOINT: 430px — iPhone 14 Pro / Small phones
   ========================================= */
@media (max-width: 430px) {
  .container { padding: 0 12px; }

  .hero { min-height: 100dvh; min-height: 100svh; }
  .hero h1 { font-size: 28px; line-height: 1.05; }
  .hero .lead { font-size: 14px; max-width: 100%; }
  .hero-art { aspect-ratio: 1 / 0.92; }

  .hero-stats { gap: 10px; }
  .hero-stats .stat .ring {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
  .hero-stats .stat-label { font-size: 10px; }
  .hero-stats .stat-label b { font-size: 11px; }
  .hero-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 16px;
  }

  .section-header h2 { font-size: clamp(26px, 7.5vw, 36px); }

  .hero-art .index {
    padding: 8px 20px;
    font-size: 12px;
  }
  .hero-art .index .n { font-size: 12px; }
  .hero-art .phase-badge {
    font-size: 8px;
    padding: 4px 10px;
    bottom: 18px;
    right: 12px;
  }

  .wire-inner { gap: 10px; }
  .wire { padding: 18px 0 20px; }

  .card { padding: 22px 18px 28px; }
  .card h3 { font-size: 19px; }
  .card p { font-size: 13px; }
  .card .arrow-mark { right: 16px; bottom: 16px; }

  .lab h4 { font-size: 16px; }
  .lab p { font-size: 12px; }

  .method-step h4 { font-size: 21px; }

  .work-slab { margin: 0 4px; padding: 40px 12px; border-radius: 18px; }
  .work-grid { gap: 32px; }

  .conv-strip-mid {
    margin: 0 8px !important;
    padding: 16px 16px !important;
  }

  .partners { grid-template-columns: 1fr; gap: 18px; }
  .partner {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .testimonial-grid { gap: 40px; }
  .testimonial-art { max-width: 100%; }

  .cta h2 { font-size: clamp(32px, 9vw, 44px); }

  footer { padding: 40px 0 20px; margin-top: 40px; }

  .process-phase img { object-fit: contain; }

  form input[type="text"],
  form input[type="email"],
  form textarea,
  form select {
    font-size: 16px !important;
  }

  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .pricing-card {
    padding: 28px 20px 30px !important;
  }

  .resource-content, .article-body {
    font-size: 15px;
    line-height: 1.65;
  }
  .resource-content h2, .article-body h2 {
    font-size: clamp(22px, 5.5vw, 30px);
  }
  .resource-content h3, .article-body h3 {
    font-size: clamp(18px, 4.5vw, 24px);
  }

  .pricing-table {
    font-size: 13px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
  }
  .pricing-table table {
    min-width: 320px;
  }

  .foot-bottom { font-size: 9px; }

  /* Section rules at 430px — even tighter */
  .sec-rule {
    font-size: 9.5px;
    padding-top: 14px;
  }
  .sec-rule .meta-grp {
    font-size: 9px;
    gap: 3px 8px;
  }
  .sec-rule > span:last-child {
    font-size: 9px;
  }

  .work-rule {
    font-size: 9px;
    padding-top: 12px;
  }
  .work-rule .meta-grp {
    font-size: 8.5px;
    gap: 3px 8px;
  }
  .work-rule > span:last-child {
    font-size: 8.5px;
  }

  .work-arrows { right: 24px; bottom: 40px; }

  .about .footer-row {
    font-size: 9px;
    gap: 8px 10px;
  }
  .about .footer-row .mark {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
  .about .footer-row .stamp {
    font-size: 8px;
  }
}

/* =========================================
   BREAKPOINT: 390px — iPhone 14 / Standard small
   ========================================= */
@media (max-width: 390px) {
  .container { padding: 0 10px; }

  .hero h1 { font-size: 26px; }
  .hero .lead { font-size: 13px; }

  .hero-art .index {
    padding: 6px 16px;
    font-size: 11px;
    bottom: 44px;
  }
  .hero-art .index .n { font-size: 11px; }

  .work-slab { margin: 0 2px; padding: 36px 10px; border-radius: 16px; }
  .work-copy h2 { font-size: clamp(24px, 6.5vw, 34px); }

  .conv-strip-mid {
    margin: 0 4px !important;
    padding: 14px 12px !important;
  }

  .pill { font-size: 11px; padding: 7px 12px; }
}

/* =========================================
   BREAKPOINT: 360px — Minimum supported width
   ========================================= */
@media (max-width: 360px) {
  .container { padding: 0 10px; }

  .hero h1 { font-size: 26px; }
  .hero .lead { font-size: 13px; }
  .hero-art { aspect-ratio: 1 / 0.96; }

  .section-header h2 { font-size: clamp(24px, 7vw, 32px); }

  .hero-stats { gap: 8px; }
  .hero-stats .stat .ring { width: 26px; height: 26px; font-size: 9px; }
  .hero-stats .stat-label { font-size: 9px; }

  .work-slab { margin: 0 2px; padding: 32px 10px; border-radius: 14px; }

  .topbar-inner { font-size: 8px; gap: 6px; }
  .topbar-inner .right { gap: 6px; }
  .topbar-inner > span:first-child { font-size: 8px; }

  .mobile-nav-panel { width: 92vw; }
  .mobile-nav-panel .mob-links { padding: 0 18px; }
  .mobile-nav-panel .mob-footer { padding: 16px 18px 0; }
  .mobile-nav-panel .mob-brand { padding: 0 18px 14px; }

  .btn { font-size: 13px; padding: 12px 16px; }

  .card { padding: 18px 14px 24px; }
  .card h3 { font-size: 17px; }

  .cta h2 { font-size: clamp(28px, 8.5vw, 36px); }

  .conv-strip { font-size: 11px; padding: 14px 8px; }
  .conv-strip-mid {
    margin: 0 2px !important;
    padding: 12px 10px !important;
  }

  .work-arrows { right: 16px; bottom: 32px; }
  .work-arrows .view-all-link { font-size: 12px; padding: 10px 16px; }
}
