.reviews {
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    width: 100%;
    background: radial-gradient(ellipse at center, #070709 0%, #000d11 100%);
    position: relative;
    padding: 4rem 0;
}

hgroup h2 {

    text-align: center;
}

.header-img>video {
  mix-blend-mode: lighten;
    max-width: 400px;
    width: 100%;
}

.rating>div {
    border-top: 2px solid #856548;
}

.reviews::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
    top: 1rem;
    height: 1px;
    background: var(--gold);
}

.reviews>a {
    margin: auto;
    display: block;
    text-decoration: none;
    color: var(--gold);
    margin: auto;
    width: fit-content;
}

.review-listings {
    max-width: 1000px;
    margin: 1rem auto;
    display: flex;
    align-items: center;
}

.review-listings button {
    width: 2rem;
    flex-shrink: 0;
    border: none;
    height: 2rem;
    border-radius: 2rem;
    position: relative;
    background: none;
    transition: 150ms all ease-in-out;
}

.review-listings button:hover {
    background: #fff3;
}

.review-listings button::before,
.review-listings button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 0.6rem;
    width: 0.6rem;
    border-left: var(--gold) 1px solid;
    border-top: var(--gold) 1px solid;
}

.review-listings button:nth-of-type(1)::before {
    transform: translate(calc(-50% - 1px), -50%) rotate(-45deg);
}

.review-listings button:nth-of-type(1)::after {
    transform: translate(calc(-50% + 7px), -50%) rotate(-45deg);
}

.review-listings button:nth-of-type(2)::before {
    transform: translate(calc(-50% - 7px), -50%) rotate(135deg);
}

.review-listings button:nth-of-type(2)::after {
    transform: translate(calc(-50% + 1px), -50%) rotate(135deg);
}

.reviews ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    overflow: hidden;
    box-sizing: border-box;
}

.info {
    margin-top: 50px;
    padding-bottom: 200px;
    padding-top: 50px;
    color: #111;
    position: relative;
}

.info::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../img/vayne.png);
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    /* Place it below the text content */
}

.info::after {
    content: "";
    position: absolute;
    display: block;
    width: 50%;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--gold);
    background: linear-gradient(to left, #856548 0%, #856548 50%, #fff 100%);
}

.info div {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    padding: 0 max(5%, 1rem);

    box-sizing: border-box;
}

.info div h2 {
    font-family: 'OSWALD';
    font-size: 3rem;
    font-weight: 700;
    width: 70%;
}

.info div p {
    width: 50%;
    line-height: 2rem;
}


.about {
    margin-top: 50px;
    padding-top: 50px;
    color: #111;
}

.about>div {
    max-width: 1000px;
    margin: auto;
    padding: 0 max(5%, 1rem);
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.about div>div {
    width: 50%;
}

.about div>img {

    max-width: 50vmin;
    max-height: 50vmin;
    padding: 0 3rem;
}

.about div h2 {
    font-family: 'OSWALD';
    font-size: 3rem;
    font-weight: 700;
}

.about div p {
    line-height: 2rem;
}

.about a {
    color: var(--gold);
}

.end-coa {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10rem 0;
}

.end-coa>a {
    filter: drop-shadow(0 0 50px #000);
}


.fancy-link {
    text-decoration: none;
    position: relative;
}

.fancy-link::after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: 150ms all linear;
}

.fancy-link:hover::after {
    width: 100%;
}

@media screen and (max-width: 600px) {

    .reviews ul li {
        width: 100%;
    }

    .about>div {
        flex-direction: column;
    }

    .about>div>img {
        max-width: 80vmin;
        max-height: 80vmin;
    }

    .about>div>div {
        width: 100%;
    }

    .info>div {}

    .info div p {
        width: 80%;
    }

    .info div h2 {
        width: 100%;
    }

    .info::before {
        opacity: 0.5;
        /* Adjust opacity here */
    }
}


.faq {
    width: 100%;
}

.faq>ul {
    max-width: 800px;
    margin: 0 auto;
    color: black;
    padding: 0;
    list-style: none;
}

.faq>h2 {
    color: black;
    text-align: center;
}

.faq>ul>li {
    border-bottom: 1px solid #0005;
}

.faq>ul>li summary {
    list-style: none;
    position: relative;
    padding: 1rem;
    cursor: pointer;
    transition: 150ms all ease-in-out;
}

.faq>ul>li summary:hover {
    background: #0003;
}

.faq>ul>li>details summary::after {
    position: absolute;
    content: "";
    right: 1rem;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid #0005;
    border-bottom: 2px solid #0005;
    transform: translateY(-50%) rotate(135deg);
    transition: 150ms all ease-in-out;
}

.faq>ul>li>details[open] summary::after {
    transform: translateY(-75%) rotate(45deg);
}

.faq>ul>li>details>div {
    padding: 0 1rem;
    padding-bottom: 1rem;
}