/* =========================
   AUDIO 1 - BOXES
========================= */

.brand-product-cards {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f8f4ed;
  border-top: 1px solid #ded6c9;
  border-bottom: 1px solid #ded6c9;
}

.brand-card {
  padding: 40px;
  border-right: 1px solid #ded6c9;

  display: flex;
  flex-direction: column;
}

.brand-card:last-child {
  border-right: none;
}

.brand-category {
  font-size: 11px;
  letter-spacing: 6px;
  color: #9b6d32;
  font-weight: 500;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.brand-card h3 {
  font-family: Playfair Display, serif;
  font-size: 24px;
  line-height: 1.2;
  color: #111;
  margin: 0 0 16px;
  font-weight: 700;
}

.brand-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #4f4a43;
  margin: 0 0 22px;
}

.brand-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.brand-tags span {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #9a7840 !important;
  border: 1px solid #ddcbb3;
  padding: 4px 10px;
  background: rgba(154,120,64,0.08);
}

@media (max-width: 991px) {
  .brand-product-cards {
    grid-template-columns: 1fr;
  }

  .brand-card {
    border-right: none;
    border-bottom: 1px solid #ded6c9;
  }

  .brand-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .brand-card {
    padding: 28px;
  }
}

.brand-product-cards.two-cards {
  grid-template-columns: repeat(2, 1fr);
}

/* =========================
   AUDIO - AUDIENCE LIST
========================= */

.brand-audience-list {
  max-width: 525px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.audience-item {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(120, 100, 70, 0.18);
  font-size: 14px;
  color: #4f4a43;
  position: relative;
}

.audience-item:nth-child(odd) {
  border-right: 1px solid rgba(120, 100, 70, 0.18);
}

.audience-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.audience-item::before {
  content: "•";
  color: #9b6d32;
  margin-right: 12px;
  font-size: 18px;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .brand-audience-list {
    grid-template-columns: 1fr;
  }

  .audience-item:nth-child(odd) {
    border-right: none;
  }

  .audience-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(120, 100, 70, 0.18);
  }

  .audience-item:last-child {
    border-bottom: none;
  }
}

.white-paragraph-text,
.white-paragraph-text * {
  color: #ffffff !important;
}

/* =========================
   VIDEO - AUDIENCE LIST
========================= */

.dark-audience-list {
  max-width: 525px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #3b3120;
}

.dark-audience-item {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.16);
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  position: relative;
}

.dark-audience-item:nth-child(odd) {
  border-right: 1px solid rgba(0,0,0,0.16);
}

.dark-audience-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.dark-audience-item::before {
  content: "•";
  color: #c7924b;
  margin-right: 14px;
  font-size: 18px;
}

@media (max-width: 600px) {
  .dark-audience-list {
    grid-template-columns: 1fr;
  }

  .dark-audience-item:nth-child(odd) {
    border-right: none;
  }
}

/* =========================
   IT - PRODUCT RANGE
========================= */

.it-brand-cards {
  max-width: 1145px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
}

.it-brand-card {
  padding: 40px;
  border-right: 1px solid #dce4df;
  display: flex;
  flex-direction: column;
}

.it-brand-card:last-child {
  border-right: none;
}

.it-card-category {
  font-size: 10px;
  letter-spacing: 6px;
  color: #2d7b58;
  font-weight: 700;
  margin-bottom: 18px;
}

.it-brand-card h3 {
  font-family: monospace;
  font-size: 17px;
  color: #111;
  margin: 0 0 16px;
  font-weight: 700;
}

.it-brand-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #4f5552;
  margin: 0 0 24px;
}

.it-card-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.it-card-tags span {
  font-size: 10px;
  letter-spacing: 1.4px;
  color: #2d7b58;
  border: 1px solid #bfded0;
  background: #e9f6ef;
  padding: 4px 10px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .it-brand-cards {
    grid-template-columns: 1fr;
  }

  .it-brand-card {
    border-right: none;
    border-bottom: 1px solid #dce4df;
  }

  .it-brand-card:last-child {
    border-bottom: none;
  }
}



/* UNIVERSAL AUDIO BUTTON */
.uad-btn-outline .vc_btn3 {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.22) !important;
    color: #1a3a6b !important;
}

/* HOVER */
.uad-btn-primary .vc_btn3:hover {
    background: #1a3a6b !important;
    border-color: #1a3a6b !important;
}

.uad-btn-outline .vc_btn3:hover {
    background: #1a3a6b !important;
}

/* UAD PRODUCT TAGS */
.uad-product-tags {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.uad-product-tags span {
  display: inline-block !important;
  font-size: 12px;
  letter-spacing: 1px;
  color: #1d3e68 !important;
  background: #eef2f6 !important;
  border: 1px solid #cbd3dc !important;
  padding: 7px 12px;
  line-height: 1;
}