.main--div{
 background: linear-gradient(0deg, rgb(232, 240, 237) 5.77%, rgb(249, 231, 214) 50.96%, rgb(255, 255, 255) 63.94%, rgb(249, 231, 214) 84.96%);
}
.opinions--hero {
    padding: 0px 50px;
    width: 100%;
    box-sizing: border-box;
}

.opinions--hero-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 190px;
    border-bottom: 1px solid #5f5a55;
}
.opinions--hero-content.talkkey--banner--content {
    padding-top: 165px;
}


/* ================================
   LEFT TEXT
================================ */

.opinions--hero-text {

    padding-bottom: 68px;
}

.opinions--hero-text h2 {
    font-size: 64px;
    line-height: 1;
    font-weight: 400;
    font-family: "LT Superior Serif", serif;
    color: #000000;
}

.opinions--hero-text p {
    max-width: 750px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}



.opinions--hero-image {
    display: flex;
    padding-right: 0;
}

.opinions--hero-image img {
    display: block;
    width: 100%;
    max-width: 372px;
    height: auto;
    object-fit: contain;
}

img.talkkey--banner{
    max-width: 500px;
}

.opinions--filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 40px;
  box-sizing: border-box;
}


.opinions--categories {
    display: flex;
    align-items: center;
    gap: 48px;
}

.opinions--categories button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font-family: "LT Superior Serif", serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;

    white-space: nowrap;
}

.opinions--categories button:hover,
.opinions--categories button.active {
    opacity: 0.6;
}

.opinions--search {
   min-width: 530px;
    margin-left: auto;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000000;
}

.opinions--search input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 0 2px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #000000;
}

.opinions--search input::placeholder {
    color: #000000;
    opacity: 1;
}

.opinions--search button {
    border: none;
    background: transparent;
    padding: 0 0 7px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    color: #000000;
}

.spotlight--section {
  padding-top: 40px;
  padding-right: 50px;
  padding-left: 50px;
}

.spotlight--section .custom--container {
  width: calc(100% - 110px);
  max-width: none;
  margin: 0 auto;
}

/* Heading */

.spotlight--heading {
  margin-bottom: 22px;
}

.spotlight--heading h2 {
  font-family: LT Superior Serif;
  margin: 0;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 400;

  color: #111111;
}

.spotlight--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  row-gap: 50px;
}

.spotlight--card {
  display: block;

  min-width: 0;

  color: #111111;
  text-decoration: none;
  background: rgb(255 255 255 / 68%);
    /* padding: 15px; */
}

.spotlight--content--area {
    padding: 20px 15px;
}

.spotlight--image {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.spotlight--image .youtube--play {
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 155px;
    height: auto;

    object-fit: contain;
    z-index: 5;
}
.spotlight--image img {
      display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    aspect-ratio: 1 / 0.5;
    object-position: center;
}

.spotlight--card:hover .spotlight--image img:first-child {
    transform: scale(1.04);
}

.spotlight--meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  /* margin-top: 26px; */
  font-size: 14px;
  font-weight: 400;


  color: var(--black);
}

.spotlight--meta span:last-child {
  white-space: nowrap;
}

.spotlight--card h3 {
  font-family: LT Superior Serif;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spotlight--card > p {
  margin-top: 7px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: #222222;

  /* Maximum two lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
  margin-bottom: 0;
}

/* ========================================
   OPINIONS PAGINATION
======================================== */

.opinions--pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 14px;

    margin-top: 32px;
    padding-bottom: 50px;
}


/* All buttons */
.opinions--pagination button {
    border: 0;
    background: transparent;
    padding: 0;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;

    color: #bdbdbd;

    cursor: pointer;

    transition: color 0.3s ease;
}

.footer--container{
  border-top: 1px solid #D4D4D4;
}

/* Page numbers */
.pagination--number {
    position: relative;

    min-width: 20px;
    height: 32px;
}


/* Active page */
.pagination--number.active {
    color: #111111;
}


/* Small line below active number */
.pagination--number.active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 22px;
    height: 1px;

    background: #111111;

    transform: translateX(-50%);
}


/* Vertical separators */
.pagination--divider {
    width: 1px;
    height: 16px;

    background: #d6d6d6;
}


/* Arrows */
.pagination--arrow {
    font-family: Arial, sans-serif !important;
    font-size: 21px !important;
    line-height: 1;

    color: #111111 !important;
}


/* Disabled previous arrow */
.pagination--prev {
    color: #d6d6d6 !important;
    cursor: default !important;
}


/* Hover */
.pagination--number:not(.active):hover {
    color: #111111;
}

/* =========================================================
   RESPONSIVE ONLY
   Desktop CSS above remains untouched
========================================================= */


/* =========================
   TABLET
   768px - 1024px
========================= */

@media (max-width: 1024px) {

    .opinions--hero, .spotlight--section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .opinions--hero-content, .opinions--hero-content.talkkey--banner--content {
        padding-top: 150px;
    }

    .opinions--hero-text {
        width: 58%;
        padding-bottom: 50px;
    }

    .opinions--hero-text h2 {
        font-size: 50px;
    }

    .opinions--hero-text p {
        font-size: 14px;
        max-width: 550px;
    }

    .opinions--hero-image {
        /* width: 17%; */
    }

    .opinions--hero-image img {
        /* max-width: 300px; */
    }


    .opinions--search {
     width: 100%;
    min-width: 0;
    }

    .opinions--search input {
        font-size: 14px;
    }


    /* Spotlight */

    .spotlight--section .custom--container {
        width: calc(100% - 60px);
    }

    .spotlight--grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 16px;
    }

    .spotlight--card h3 {
        font-size: 19px;
    }

    .spotlight--card > p {
        font-size: 16px;
    }
    .opinions--categories {
        gap: 25px;
    }
}



/* =========================
   MOBILE
   767px and below
========================= */

@media (max-width: 767px) {

    /* =====================
       HERO
    ===================== */

    .opinions--hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .opinions--hero-content {
        min-height: auto;
        padding-top: 120px;
        flex-direction: column;
        align-items: stretch;
        border-bottom: 0px;
    }


    /* Text */

    .opinions--hero-text {
        width: 100%;
        padding-bottom: 0px;
    }

    .opinions--hero-text h2 {
        font-size: 40px;
        line-height: 1.05;
        margin-bottom: 15px;
    }

    .opinions--hero-text p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.5;
    }


    /* Hand image */

    .opinions--hero-image {
        width: 100%;
        justify-content: flex-end;
        display: none;
    }

    .opinions--hero-image img {
        width: 70%;
        max-width: 280px;
        margin-left: auto;
    }


    /* =====================
       FILTERS
    ===================== */

    .opinions--filters {
        flex-direction: column-reverse;
        align-items: stretch;
        padding-top: 0;
        gap: 25px;
        padding-bottom: 20px;
    }

    .opinions--categories {
        width: 100%;
        gap: 25px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 5px;
        scrollbar-width: none;
    }

    /* Categories */

    /* Search */

    .opinions--search {
        width: 100%;
    }

    .opinions--search input {
        font-size: 13px;
    }

    .opinions--search button img {
        width: 15px;
        height: 15px;
    }


    /* =====================
       SPOTLIGHT
    ===================== */

    .spotlight--section {
        padding-top: 0px;
    }

    .spotlight--section .custom--container {
        width: calc(100% - 40px);
    }

    .spotlight--grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    /* Images */

    .spotlight--image {
        width: 100%;
    }

    .spotlight--image img {
        width: 100%;
        aspect-ratio: 1 / 0.55;
        object-fit: cover;
        object-position: bottom;
    }
    .spotlight--image .youtube--play{
        width: 100px;
    }


    /* Article title */

    .spotlight--card h3 {
        margin-top: 14px;

        font-size: 20px;
        line-height: 1.25;
    }


    /* Article description */

    .spotlight--card > p {
        margin-top: 8px;

        font-size: 15px;
        line-height: 1.45;
    }


    /* =====================
       PAGINATION
    ===================== */

    .opinions--pagination {
        margin-top: 45px;
        padding-bottom: 45px;

        gap: 12px;

        justify-content: flex-end;
    }

    .opinions--pagination button {
        font-size: 14px;
    }

    .pagination--arrow {
        font-size: 19px !important;
    }

    .pagination--number {
        min-width: 18px;
        height: 28px;
    }

    .pagination--number.active::after {
        width: 19px;
    }

    .pagination--divider {
        height: 14px;
    }
}
