/*
  Voiajor.net redesign theme.
  Scoped under .vj-header / .vj-footer / .vj-home so it never touches the
  Bootstrap-based markup still used by pages that have not been redesigned yet.
  Adapted from the voiajor_frontend_demo static mockup.
*/

:root {
  --vj-navy: #082b58;
  --vj-navy-dark: #042247;
  --vj-blue: #1168b7;
  --vj-blue-light: #dbeaf3;
  --vj-orange: #ff8a00;
  --vj-orange-dark: #ed7600;
  --vj-text: #10223a;
  --vj-muted: #5f7183;
  --vj-border: #d5e0e8;
  --vj-surface: #f4f8fb;
  --vj-white: #ffffff;
  --vj-shadow: 0 3px 12px rgba(11, 49, 86, .12);
}

.vj-header,
.vj-footer,
.vj-home {
  font-family: Inter, Arial, sans-serif;
  color: var(--vj-text);
}

.vj-header *,
.vj-footer *,
.vj-home * {
  box-sizing: border-box;
}

.vj-header img,
.vj-footer img,
.vj-home img {
  max-width: 100%;
  display: block;
}

.vj-header a,
.vj-footer a,
.vj-home a {
  color: inherit;
  text-decoration: none;
}

.vj-header button,
.vj-header input,
.vj-footer button,
.vj-footer input,
.vj-home button,
.vj-home input {
  font: inherit;
}

.vj-container {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}

/* ---------- Header ---------- */

.vj-header {
  background: var(--vj-white);
}

.vj-header-main {
  display: grid;
  grid-template-columns: 140px minmax(280px, 1fr) auto;
  align-items: center;
  gap: 90px;
  min-height: 94px;
}

.vj-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.vj-brand img {
  max-height: 90px;
}

.vj-brand-tagline {
  margin-top: 6px;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--vj-muted);
  white-space: nowrap;
}
.voiajor-logo {
  container-name: voiajor-logo;
  container-type: inline-size;
  width: min(100%, 920px);
  color: var(--voiajor-navy);
}

.voiajor-logo__mark {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

.voiajor-logo__content {
  min-width: 0;
}

.voiajor-logo__wordmark-art {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

.voiajor-logo__tagline {
  width: 100%;
  margin: clamp(5px, 2cqi, 18px) 0 0;
  overflow: visible;
  color: var(--voiajor-navy);
  font-family: "Avenir Next", Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.25rem, 1.42cqi, 0.88rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.55em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.vj-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vj-language {
  position: relative;
}

.vj-language-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--vj-border);
  background: transparent;
  color: var(--vj-navy);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
}

.vj-language-toggle img {
  width: 18px;
  height: 12px;
}

.vj-language-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  padding-top: 6px;
  z-index: 20;
}

.vj-language-menu-inner {
  min-width: 140px;
  background: #fff;
  border: 1px solid var(--vj-border);
  border-radius: 5px;
  box-shadow: var(--vj-shadow);
  padding: 6px;
}

.vj-language:hover .vj-language-menu,
.vj-language:focus-within .vj-language-menu,
.vj-language.vj-language-open .vj-language-menu {
  display: block;
}

.vj-language-menu a,
.vj-language-menu span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 14px;
}

.vj-language-menu a:hover {
  background: var(--vj-surface);
}

.vj-language-menu span {
  opacity: .5;
}

.vj-language-menu img {
  width: 18px;
  height: 12px;
}

.vj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 5px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: .2s ease;
}

.vj-btn:hover {
  transform: translateY(-1px);
}

.vj-btn-outline {
  color: var(--vj-navy);
  border: 1px solid #8bb3d8;
  background: #fff;
}

.vj-btn-orange {
  background: var(--vj-orange);
  color: #fff;
}

.vj-btn-orange:hover {
  background: var(--vj-orange-dark);
}

.vj-btn-blue {
  background: var(--vj-blue);
  color: #fff;
}

.vj-btn-block {
  width: 100%;
}

.vj-main-nav {
  background: var(--vj-navy);
  color: #fff;
}

.vj-nav-inner {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .7px;
}

.vj-nav-inner span {
  opacity: .8;
}

.vj-nav-inner a.active {
  color: var(--vj-orange);
}

.vj-stats-strip {
  border-bottom: 1px solid var(--vj-border);
  background: #fff;
}

.vj-stats-inner {
  min-height: 38px;
  display: flex;
  justify-content: center;
  gap: 34px;
  align-items: center;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--vj-navy);
  text-transform: uppercase;
  font-size: 14px;
}

/* ---------- Home ---------- */
.vj-hero-banner {
  min-height: 266px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(255,255,255,.98) 0 55%, rgba(255,179,0,.9) 55% 100%);
  border: 1px solid var(--vj-border);
}

.vj-hero-copy {
  max-width: 620px;
}

.vj-hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--vj-navy);
  font-weight: 800;
  letter-spacing: 1px;
}

.vj-hero-copy h1 {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: .98;
  color: #111;
}

.vj-hero-copy p {
  font-size: 19px;
  font-weight: 600;
}

.vj-hero-device {
  font-size: 130px;
  transform: rotate(-5deg);
  filter: drop-shadow(0 14px 10px rgba(0,0,0,.25));
}

.rotator_slider_container{
  float:left;
  width:calc(72% - 10px);
}
.rotator_slider_container.full_width{
  display:blosk;
  float:none;
  width:100%;
}
.countdown{
  float:right;
  width:calc(27% - 10px);
}

.vj-hero {
  padding:0px;
  margin:0px 0px 0px 10px;
  width:100%;
}

.vj-countdown-card {
  padding:18px 0px 18px 0px;
  border: 1px solid var(--vj-border);
  background: #fff;
  text-align: center;
  box-shadow: var(--vj-shadow);
}

.vj-countdown-card h2,
.vj-section-heading h2,
.vj-recent-articles > h2,
.vj-sell-card h2,
.vj-newsletter h2,
.vj-footer-grid h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.vj-countdown-card h2 {
  margin: 0 0 20px;
  font-size: 22px;
}

.vj-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.vj-countdown div {
  border-right: 1px solid var(--vj-border);
}

.vj-countdown div:last-child {
  border-right: 0;
}

.vj-countdown strong {
  display: block;
  color: #d22664;
  font-size: 31px;
}

.vj-countdown span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--vj-muted);
}

.vj-countdown-card p {
  font-weight: 600;
  line-height: 1.45;
}

.vj-section-block {
  padding-top: 22px;
}

.vj-section-heading h2 {
  float:left;
  margin: 0 0 14px;
  font-size: 25px;
  color: #2a77b6;
}

.vj-section-heading a {
  float:right;
  margin: 0 0 14px;
  font-size: 16px;
  color: #2a77b6;
}

.vj-section-heading span {
  color: var(--vj-blue);
}

.vj-auction-slider {
  position: relative;
}
.vj-article-slider {
  position: relative;
}

.vj-auction-track,
.vj-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.vj-article-track{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.vj-auction-card,
.vj-product-card {
  overflow: hidden;
  border: 1px solid var(--vj-border);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.vj-article-card{
  overflow: hidden;
  border: 1px solid var(--vj-border);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}

.vj-auction-card,
.vj-product-card,
.vj-article-card{
  cursor:pointer;
}
.vj-auction-card:hover,
.vj-product-card:hover,
.vj-article-card:hover{
  box-shadow: 0 6px 16px rgba(11, 49, 86, .12);
  transition: box-shadow .4s ease, transform .4s ease;
  transform: translateY(-2px);
}

.vj-auction-logo {
  height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}
.vj-auction-logo img {
  max-height: 100%;
  width: 100%;
  object-fit: contain;
}

.vj-article-logo {
  height: 164px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}
.vj-article-logo img {
  max-height: 100%;
  width: 100%;
  object-fit: contain;
}
.vj-article-card h3{
  margin: 0;
  padding-inline:8px;
  padding:5px 6px 5px 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size:18px;
  height: 69px;
  color: #1575aa;
  overflow:hidden;
}

.vj-auction-card h3,
.vj-auction-card p {
  margin: 0;
  padding-inline:8px;
}

.vj-auction-card h3 {
  padding:5px 6px 5px 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size:18px;
  height: 50px;
  color: #1575aa;
  overflow:hidden;
}

.vj-auction-card p {
  padding-bottom: 23px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.vj-auction-date {
  display:block;
  padding: 4px 6px;
  background: #f3e8dc;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
}

.vj-auction-date strong {
  display: inline;
  color: var(--vj-blue);
  font-size: 16px;
}

.vj-auction-card:nth-child(even) .vj-auction-date {
  background: #dce9ef;
}

.vj-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid var(--vj-border);
  border-radius: 50%;
  background: #fff;
  color: var(--vj-blue);
  font-size: 34px;
  line-height: 1;
  box-shadow: var(--vj-shadow);
  cursor: pointer;
  transform: translateY(-50%);
}

.vj-slider-arrow.prev {
  left: -20px;
}

.vj-slider-arrow.next {
  right: -20px;
}

.vj-product-card {
  background: linear-gradient(#fff 0 62%, #dceaf2 62% 100%);
  display: flex;
  flex-direction: column;
}

.vj-pigeon-image {
  height: 185px;
  display: grid;
  place-items: center;
  background: #fff;
}

.vj-pigeon-image img {
  max-height: 100%;
  width: auto;
}

.vj-product-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vj-product-body p {
  margin: 0 0 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
}

.vj-product-body strong {
  display: block;
  margin: 4px 0 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
}

.vj-product-body .vj-btn {
  margin-top: auto;
}

.vj-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  padding-bottom: 12px;
}

.vj-promo-placeholder,
.vj-recent-articles,
.vj-sell-card {
  min-height: 280px;
  padding: 20px;
  background: #e7f0f5;
  border-radius: 7px;
}

.vj-promo-placeholder {
  display: grid;
  place-items: center;
  color: var(--vj-orange);
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.vj-recent-articles > h2,
.vj-sell-card h2 {
  margin: 0 0 10px;
  color: #3182b5;
  font-size: 28px;
}

.vj-recent-articles article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(0,0,0,.07);
}

.vj-article-thumb {
  display: grid;
  place-items: center;
  min-height: 62px;
  background: #fff;
  overflow: hidden;
}

.vj-article-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.vj-recent-articles h3 {
  margin: 0 0 3px;
  color: #2683b9;
  font-size: 15px;
}

.vj-recent-articles p {
  margin: 0;
  color: #347aa7;
  font-size: 13px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.vj-sell-card {
  position: relative;
  overflow: hidden;
}

.vj-sell-card h2 {
  max-width: 290px;
  font-size: 37px;
}

.vj-sell-card p,
.vj-sell-card ul {
  position: relative;
  z-index: 1;
  max-width: 280px;
}

.vj-sell-card li {
  margin-bottom: 8px;
  color: #2384ba;
}

.vj-sell-card .vj-btn {
  position: relative;
  z-index: 2;
}

.vj-newsletter {
  margin-top: 0;
  padding: 10px 0;
  background: var(--vj-navy-dark);
  color: #fff;
}

.vj-newsletter-grid {
  display: grid;
  grid-template-columns: 2.35fr .7fr;
  align-items: stretch;
}

.vj-newsletter-grid > div {
  padding: 20px 36px;
  border-right: 1px solid rgba(255,255,255,.28);
}

.vj-newsletter-grid > div:last-child {
  border-right: 0;
}

.vj-newsletter h2,
.vj-newsletter h3 {
  margin: 0 0 10px;
}

.vj-newsletter-benefits ul {
  padding-left: 18px;
  line-height: 1.8;
}

.vj-newsletter-form form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
}

.vj-newsletter-form input {
  min-height: 42px;
  border: 0;
  border-radius: 5px;
  padding: 0 16px;
}

.vj-newsletter-form p {
  margin-bottom: 0;
  margin-top: 10px;
  font-family: "Barlow Condensed", sans-serif;
}

.vj-social-icons {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}

.vj-social-icons a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-size: 22px;
  font-weight: 800;
}

.vj-social-icons img {
  width: 20px;
  height: 20px;
}

/* ---------- Footer ---------- */

.vj-footer {
  padding: 22px 0 40px;
  background: #fff;
}

.vj-footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 34px;
}

.vj-footer-grid h3 {
  margin: 0 0 10px;
  color: #3684b4;
  font-size: 20px;
}

.vj-footer-grid a,
.vj-footer-grid p {
  display: block;
  margin: 0 0 7px;
  color: #173960;
  font-size: 14px;
  line-height: 1.4;
}

.vj-footer-brand img {
  max-height: 140px;
  margin-bottom: 12px;
}

.vj-footer-legal {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--vj-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  font-size: 12px;
  color: #888;
}

.vj-footer-legal a {
  color: #173960;
  text-decoration: underline;
}

.vj-footer-legal .vj-footer-legal-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.vj-footer-legal .vj-footer-legal-badges svg,
.vj-footer-legal .vj-footer-legal-badges img {
  height: 32px;
  width: auto;
}

.transparent-btns_tabs{
  display:none;
}

/* ----------------------------------------------------------------------
   Auction lot pigeon cards (templates/frontend/licitatii/details.php,
   .auction-details-part-pigeon-grid / .pigeon-* markup). Cosmetic-only
   restyle to the new look: colors/fonts/spacing/borders only, no float
   or display changes that would alter the existing element order.
   ---------------------------------------------------------------------- */

.auction-details-part-pigeon-grid {
  background: #fff;
  border: 1px solid var(--vj-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(11, 49, 86, .06);
  transition: box-shadow .3s ease;
}

.auction-details-part-pigeon-grid:hover {
  box-shadow: 0 6px 16px rgba(11, 49, 86, .12);
}

.auction-details-part-pigeon-grid .pigeon-nr {
  display: inline-block;
  background: var(--vj-navy);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin: 0px 0 0 0px;
}

.auction-details-part-pigeon-grid .pigeon-nr::before {
  content: "Lot ";
}

.auction-details-part-pigeon-grid .pigeon-name a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--vj-navy);
  text-decoration: none;
}

.auction-details-part-pigeon-grid .pigeon-sub-heading {
  padding: 0 0px;
  color: var(--vj-muted);
  font-size: 13px;
}

.auction-details-part-pigeon-grid .pigeon-band {
  color: var(--vj-muted);
}

.auction-details-part-pigeon-grid .pigeon-img img {
  border-top: 1px solid var(--vj-border);
  border-bottom: 1px solid var(--vj-border);
}

.auction-details-part-pigeon-grid .pigeon-description {
  padding: 0 12px;
}

.auction-details-part-pigeon-grid .pigeon-description .time {
  margin-top: 8px;
}

.auction-details-part-pigeon-grid .pigeon-description .time b {
  display: inline-block;
  background: var(--vj-surface);
  color: var(--vj-muted);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.auction-details-part-pigeon-grid .pigeon-description .time span {
  display: block;
  margin-top: 4px;
  color: var(--vj-muted);
  font-size: 12px;
}

.auction-details-part-pigeon-grid .pigeon-meta {
  padding: 0 0px;
  margin-top: 8px;
  font-size: 13px;
}

.auction-details-part-pigeon-grid .pigeon-bred-by,
.auction-details-part-pigeon-grid .pigeon-offered-by,
.auction-details-part-pigeon-grid .pigeon-bidder {
  margin-bottom: 4px;
  color: var(--vj-text);
}

.auction-details-part-pigeon-grid .pigeon-bred-by b,
.auction-details-part-pigeon-grid .pigeon-offered-by b,
.auction-details-part-pigeon-grid .pigeon-bidder b {
  color: var(--vj-navy);
  font-weight: 700;
}

.auction-details-part-pigeon-grid .pigeon-bidding-details {
  margin: 10px 0px 0;
  padding-top: 10px;
  border-top: 1px solid var(--vj-border);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
}

.auction-details-part-pigeon-grid .pigeon-bidding-details .left-bid,
.auction-details-part-pigeon-grid .pigeon-bidding-details .left-bid-rate {
  color: var(--vj-navy);
  font-size:20px;
}

.auction-details-part-pigeon-grid .pigeon-bidding-details .right-bid,
.auction-details-part-pigeon-grid .pigeon-bidding-details .right-bid-rate {
  color: var(--vj-orange);
  font-size:20px;
}

.auction-details-part-pigeon-grid .pigeon-actions {
  padding: 10px 0px 12px;
  height: auto;
}

.auction-details-part-pigeon-grid .pigeon-actions .btn {
  background: var(--vj-navy);
  border-color: var(--vj-navy);
  border-radius: 5px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.auction-details-part-pigeon-grid .pigeon-actions .btn:hover,
.auction-details-part-pigeon-grid .pigeon-actions .btn:focus {
  background: var(--vj-navy-dark);
  border-color: var(--vj-navy-dark);
  color: #fff;
}

/* when there is only one action button (e.g. a closed auction, no bid
   button) it can safely go full-width without disturbing the float
   left/right pairing used when both Detalii + Licitează are present */
.auction-details-part-pigeon-grid .pigeon-actions .btn:only-child {
  display: block;
  float: none;
  width: calc(100% - 24px);
  margin: 0 12px;
  text-align: center;
}

.auction-details-part-pigeon-grid .pigeon-actions .btn:only-child::after {
  content: " \2192";
}

/* ---------- Responsive ---------- */

@media (max-width: 1190px) {
  .vj-header-main {
    grid-template-columns: 140px auto 346px;
    gap: 5%;
  }
}

@media (max-width: 1090px) {
  .vj-header-main {
    grid-template-columns: 140px auto 346px;
    gap: 2%;
  }
}

@media (max-width: 990px) {
  .vj-header-main {
    grid-template-columns: 140px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 10px;
  }

  .vj-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .vj-search-box {
    grid-column: 2;
    grid-row: 1;
  }

  .vj-header-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-end;
  }
}

@media (max-width: 840px) {
  .vj-header-main {
    grid-template-columns: 100px 1fr;
  }
  .vj-language-toggle {
    padding: 4px 6px;
  }
  .vj-btn {
    min-height: 30px;
    padding: 0 6px;
  }
  .vj-btn .fa {
    margin-right: 4px;
  }
}

@media (max-width: 760px) {
  .vj-container {
    width: min(100% - 22px, 1240px);
  }

  .vj-brand {
    width: 100%;
  }

  .vj-brand img {
    max-height: 42px;
  }

  .vj-header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .vj-nav-inner {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 10px;
    white-space: nowrap;
  }

  .vj-nav-inner span {
    display: none;
  }

  .vj-stats-inner {
    min-height: 30px;
    gap: 10px;
    font-size: 11px;
  }

  .vj-hero-banner {
    min-height: 360px;
    padding: 26px;
    align-items: flex-start;
  }

  .vj-hero-device {
    position: absolute;
    right: 25px;
    margin-top: 170px;
    font-size: 90px;
    opacity: .65;
  }

  .vj-countdown-card {
    display: block;
  }

  .vj-countdown {
    margin: 20px 0;
  }

  .vj-auction-track,
  .vj-product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
  .vj-article-track{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .vj-auction-card,
  .vj-product-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
  .vj-article-card{
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .vj-slider-arrow {
    display: none;
  }

  .vj-content-grid,
  .vj-newsletter-grid,
  .vj-footer-grid {
    grid-template-columns: 1fr;
  }

  .vj-sell-card {
    grid-column: auto;
  }

  .vj-newsletter-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.25);
    padding: 22px 12px;
  }

  .vj-newsletter-form form {
    grid-template-columns: 1fr;
  }

  .vj-footer-brand {
    grid-column: auto;
  }

  .vj-footer-legal .vj-footer-legal-badges {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .vj-stats-inner {
    gap: 10px;
  }
}

@media (max-width: 526px) {
  .vj-stats-inner {
    display: none;
  }
  .vj-nav-inner {
    padding: 0 0px;
  }
  .vj-nav-inner {
    min-height: 36px;
    gap: 20px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .vj-auction-card,
  .vj-product-card {
    flex: 0 0 88%;
  }
  .vj-article-card{
    flex: 0 0 88%;
  }

  .vj-brand-tagline {
    display: none;
  }
}

@media (max-width: 420px) {
  .vj-nav-inner {
    min-height: 30px;
    gap: 10px;
    font-size: 14px;
  }
}
