@import url("./index.css");

.conference-audience {
  width: min(100% - 40px, 1180px);
  margin: 80px auto;
  padding: 56px 60px 64px;
  box-sizing: border-box;

  /* Dark blue-to-charcoal background */
  background: linear-gradient(
    100deg,
    #21374d 0%,
    #243747 50%,
    #29343e 100%
  );

  border-radius: 10px;
}

.conference-audience__header {
  max-width: 760px;
  margin-bottom: 36px;
}

.conference-audience__eyebrow {
  margin: 0 0 12px;

  color: #f0a05a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.conference-audience__title {
  margin: 0;

  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.5px;
}

.conference-audience__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 960px;
}

.conference-audience__item {
  display: flex;
  align-items: center;

  min-height: 60px;
  padding: 15px 20px;
  box-sizing: border-box;

  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(201, 211, 220, 0.42);

  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;

  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.conference-audience__item:hover {
  background-color: #b35c1e;
  border-color: #b35c1e;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .conference-audience {
    width: min(100% - 32px, 1180px);
    margin: 60px auto;
    padding: 48px 40px 54px;
  }

  .conference-audience__title {
    font-size: clamp(38px, 7vw, 50px);
  }
}

@media (max-width: 650px) {
  .conference-audience {
    width: calc(100% - 28px);
    margin: 40px auto;
    padding: 38px 24px 42px;
    border-radius: 8px;
  }

  .conference-audience__header {
    margin-bottom: 28px;
  }

  .conference-audience__eyebrow {
    font-size: 13px;
    letter-spacing: 1.7px;
  }

  .conference-audience__title {
    font-size: 36px;
    line-height: 1.06;
    letter-spacing: -0.8px;
  }

  .conference-audience__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .conference-audience__item {
    min-height: 56px;
    padding: 14px 17px;
    font-size: 15px;
  }
}



.sponsor-showcase {
  width: 100%;
  padding: 45px 0 50px;
  background-color: #f3f1eb;
}

.sponsor-showcase__container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 65px;
}

/* =========================
   LEFT COLUMN
========================= */

.sponsor-showcase__left {
  min-width: 0;
}

.sponsor-showcase__heading {
  margin-bottom: 25px;
}

.sponsor-showcase__eyebrow {
  margin: 0 0 10px;

  color: #c65f19;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.sponsor-showcase__title {
  max-width: 650px;
  margin: 0;

  color: #20384e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -1.5px;
}

/* Smaller image so the section fits on laptop screens */

.sponsor-showcase__image-frame {
  width: 100%;
  height: 315px;
  overflow: hidden;

  background-color: #dce2e3;
  border-radius: 4px;
}

.sponsor-showcase__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.4s ease;
}

.sponsor-showcase__image-frame:hover .sponsor-showcase__image {
  transform: scale(1.025);
}

.sponsor-showcase__image-label {
  position: relative;
  margin: 19px 0 0;
  padding-top: 14px;

  color: #20384e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 2.2px;
  text-align: center;
  text-transform: uppercase;
}

.sponsor-showcase__image-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 52px;
  height: 3px;

  background-color: #c65f19;
  transform: translateX(-50%);
}

/* =========================
   RIGHT COLUMN
========================= */

.sponsor-showcase__right {
  min-width: 0;
  padding-top: 0;
}

.sponsor-showcase__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 240px;
  padding: 28px;
  box-sizing: border-box;

  background-color: #ffffff;
  border: 1px solid #d0d7da;
  border-radius: 5px;
}

.sponsor-showcase__logo {
  display: block;
  width: auto;
  max-width: 280px;
  max-height: 185px;
  object-fit: contain;
}

.sponsor-showcase__content {
  margin-top: 28px;
}

.sponsor-showcase__category {
  margin: 0 0 14px;

  color: #c65f19;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.sponsor-showcase__description {
  margin: 0 0 14px;

  color: #31485b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.sponsor-showcase__description:last-child {
  margin-bottom: 0;
}

/* =========================
   SMALL LAPTOPS
========================= */

@media (max-width: 1100px) {
  .sponsor-showcase {
    padding: 40px 0 45px;
  }

  .sponsor-showcase__container {
    width: min(100% - 40px, 1040px);
    gap: 45px;
  }

  .sponsor-showcase__title {
    font-size: clamp(39px, 4.5vw, 52px);
  }

  .sponsor-showcase__image-frame {
    height: 285px;
  }

  .sponsor-showcase__logo-frame {
    min-height: 220px;
  }

  .sponsor-showcase__logo {
    max-width: 250px;
    max-height: 165px;
  }

  .sponsor-showcase__content {
    margin-top: 24px;
  }

  .sponsor-showcase__description {
    font-size: 14px;
    line-height: 1.65;
  }
}

/* =========================
   TABLETS AND MOBILE
========================= */

@media (max-width: 760px) {
  .sponsor-showcase {
    padding: 48px 0;
  }

  .sponsor-showcase__container {
    width: min(100% - 30px, 620px);
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sponsor-showcase__title {
    font-size: 42px;
    line-height: 1.02;
  }

  .sponsor-showcase__image-frame {
    height: 320px;
  }

  .sponsor-showcase__logo-frame {
    min-height: 210px;
    padding: 24px;
  }

  .sponsor-showcase__logo {
    max-width: 240px;
    max-height: 160px;
  }

  .sponsor-showcase__description {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 450px) {
  .sponsor-showcase__title {
    font-size: 35px;
  }

  .sponsor-showcase__image-frame {
    height: 250px;
  }

  .sponsor-showcase__logo-frame {
    min-height: 180px;
  }

  .sponsor-showcase__logo {
    max-width: 205px;
    max-height: 135px;
  }
}



.golden-sponsor-showcase {
  width: 100%;
  padding: 45px 0 50px;
  background-color: #f3f1eb;
}

.golden-sponsor-showcase__container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 65px;
}

/* ========================================
   LEFT COLUMN: LOGO AND TEXT
======================================== */

.golden-sponsor-showcase__left {
  min-width: 0;
}

.golden-sponsor-showcase__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 240px;
  padding: 28px;
  box-sizing: border-box;

  background-color: #ffffff;
  border: 1px solid #d0d7da;
  border-radius: 5px;
}

.golden-sponsor-showcase__logo {
  display: block;
  width: auto;
  max-width: 340px;
  max-height: 175px;
  object-fit: contain;
}

.golden-sponsor-showcase__content {
  margin-top: 28px;
}

.golden-sponsor-showcase__category {
  margin: 0 0 14px;

  color: #c65f19;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.golden-sponsor-showcase__description {
  margin: 0 0 14px;

  color: #31485b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.golden-sponsor-showcase__description:last-child {
  margin-bottom: 0;
}

/* ========================================
   RIGHT COLUMN: HEADING AND IMAGE
======================================== */

.golden-sponsor-showcase__right {
  min-width: 0;
}

.golden-sponsor-showcase__heading {
  margin-bottom: 25px;
}

.golden-sponsor-showcase__eyebrow {
  margin: 0 0 10px;

  color: #c65f19;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.golden-sponsor-showcase__title {
  max-width: 650px;
  margin: 0;

  color: #20384e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -1.5px;
}

.golden-sponsor-showcase__image-frame {
  width: 100%;
  height: 315px;
  overflow: hidden;

  background-color: #dce2e3;
  border-radius: 4px;
}

.golden-sponsor-showcase__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.4s ease;
}

.golden-sponsor-showcase__image-frame:hover
.golden-sponsor-showcase__image {
  transform: scale(1.025);
}

.golden-sponsor-showcase__image-label {
  position: relative;
  margin: 19px 0 0;
  padding-top: 14px;

  color: #20384e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 2.2px;
  text-align: center;
  text-transform: uppercase;
}

.golden-sponsor-showcase__image-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 52px;
  height: 3px;

  background-color: #c65f19;
  transform: translateX(-50%);
}

/* ========================================
   SMALL LAPTOPS
======================================== */

@media (max-width: 1100px) {
  .golden-sponsor-showcase {
    padding: 40px 0 45px;
  }

  .golden-sponsor-showcase__container {
    width: min(100% - 40px, 1040px);
    gap: 45px;
  }

  .golden-sponsor-showcase__title {
    font-size: clamp(39px, 4.5vw, 52px);
  }

  .golden-sponsor-showcase__image-frame {
    height: 285px;
  }

  .golden-sponsor-showcase__logo-frame {
    min-height: 220px;
  }

  .golden-sponsor-showcase__logo {
    max-width: 290px;
    max-height: 155px;
  }

  .golden-sponsor-showcase__content {
    margin-top: 24px;
  }

  .golden-sponsor-showcase__description {
    font-size: 14px;
    line-height: 1.65;
  }
}

/* ========================================
   TABLETS AND MOBILE
======================================== */

@media (max-width: 760px) {
  .golden-sponsor-showcase {
    padding: 48px 0;
  }

  .golden-sponsor-showcase__container {
    width: min(100% - 30px, 620px);
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Place heading and image first on mobile */
  .golden-sponsor-showcase__right {
    order: 1;
  }

  .golden-sponsor-showcase__left {
    order: 2;
  }

  .golden-sponsor-showcase__title {
    font-size: 42px;
    line-height: 1.02;
  }

  .golden-sponsor-showcase__image-frame {
    height: 320px;
  }

  .golden-sponsor-showcase__logo-frame {
    min-height: 210px;
    padding: 24px;
  }

  .golden-sponsor-showcase__logo {
    max-width: 280px;
    max-height: 150px;
  }

  .golden-sponsor-showcase__description {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 450px) {
  .golden-sponsor-showcase__title {
    font-size: 35px;
  }

  .golden-sponsor-showcase__image-frame {
    height: 250px;
  }

  .golden-sponsor-showcase__logo-frame {
    min-height: 180px;
  }

  .golden-sponsor-showcase__logo {
    max-width: 230px;
    max-height: 125px;
  }
}


.silver-sponsor-showcase {
  width: 100%;
  padding: 45px 0 50px;
  background-color: #f3f1eb;
}

.silver-sponsor-showcase__container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 65px;
}

/* ========================================
   LEFT: HEADING, IMAGE AND SPONSOR LEVEL
======================================== */

.silver-sponsor-showcase__left {
  min-width: 0;
}

.silver-sponsor-showcase__heading {
  margin-bottom: 25px;
}

.silver-sponsor-showcase__eyebrow {
  margin: 0 0 10px;

  color: #c65f19;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.silver-sponsor-showcase__title {
  max-width: 650px;
  margin: 0;

  color: #20384e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -1.5px;
}

.silver-sponsor-showcase__image-frame {
  width: 100%;
  height: 315px;
  overflow: hidden;

  background-color: #dce2e3;
  border-radius: 4px;
}

.silver-sponsor-showcase__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.4s ease;
}

.silver-sponsor-showcase__image-frame:hover
.silver-sponsor-showcase__image {
  transform: scale(1.025);
}

.silver-sponsor-showcase__image-label {
  position: relative;
  margin: 19px 0 0;
  padding-top: 14px;

  color: #20384e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 2.2px;
  text-align: center;
  text-transform: uppercase;
}

.silver-sponsor-showcase__image-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 52px;
  height: 3px;

  background-color: #a9afb4;
  transform: translateX(-50%);
}

/* ========================================
   RIGHT: LOGO AND COMPANY INFORMATION
======================================== */

.silver-sponsor-showcase__right {
  min-width: 0;
}

.silver-sponsor-showcase__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 240px;
  padding: 28px;
  box-sizing: border-box;

  background-color: #ffffff;
  border: 1px solid #d0d7da;
  border-radius: 5px;
}

.silver-sponsor-showcase__logo {
  display: block;
  width: auto;
  max-width: 390px;
  max-height: 170px;
  object-fit: contain;
}

.silver-sponsor-showcase__content {
  margin-top: 28px;
}

.silver-sponsor-showcase__category {
  margin: 0 0 14px;

  color: #c65f19;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.silver-sponsor-showcase__description {
  margin: 0 0 14px;

  color: #31485b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.silver-sponsor-showcase__description:last-child {
  margin-bottom: 0;
}

/* ========================================
   SMALL LAPTOPS
======================================== */

@media (max-width: 1100px) {
  .silver-sponsor-showcase {
    padding: 40px 0 45px;
  }

  .silver-sponsor-showcase__container {
    width: min(100% - 40px, 1040px);
    gap: 45px;
  }

  .silver-sponsor-showcase__title {
    font-size: clamp(39px, 4.5vw, 52px);
  }

  .silver-sponsor-showcase__image-frame {
    height: 285px;
  }

  .silver-sponsor-showcase__logo-frame {
    min-height: 220px;
  }

  .silver-sponsor-showcase__logo {
    max-width: 340px;
    max-height: 150px;
  }

  .silver-sponsor-showcase__content {
    margin-top: 24px;
  }

  .silver-sponsor-showcase__description {
    font-size: 14px;
    line-height: 1.65;
  }
}

/* ========================================
   TABLETS AND MOBILE
======================================== */

@media (max-width: 760px) {
  .silver-sponsor-showcase {
    padding: 48px 0;
  }

  .silver-sponsor-showcase__container {
    width: min(100% - 30px, 620px);
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .silver-sponsor-showcase__left {
    order: 1;
  }

  .silver-sponsor-showcase__right {
    order: 2;
  }

  .silver-sponsor-showcase__title {
    font-size: 42px;
    line-height: 1.02;
  }

  .silver-sponsor-showcase__image-frame {
    height: 320px;
  }

  .silver-sponsor-showcase__logo-frame {
    min-height: 210px;
    padding: 24px;
  }

  .silver-sponsor-showcase__logo {
    max-width: 330px;
    max-height: 145px;
  }

  .silver-sponsor-showcase__description {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 450px) {
  .silver-sponsor-showcase__title {
    font-size: 35px;
  }

  .silver-sponsor-showcase__image-frame {
    height: 250px;
  }

  .silver-sponsor-showcase__logo-frame {
    min-height: 180px;
  }

  .silver-sponsor-showcase__logo {
    max-width: 270px;
    max-height: 120px;
  }
}