@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Roboto:500,700,400");
* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}
html,
body {
    margin: 0px;
    height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
    outline: 2px solid #4a90e2 !important;
    outline: -webkit-focus-ring-color auto 5px !important;
}
a {
    text-decoration: none;
}

/* Font definitions */
@font-face {
    font-family: "AptosLight";
    src: url("webFonts/AptosLight/font.woff2") format("woff2"),
        url("webFonts/AptosLight/font.woff") format("woff");
}
@font-face {
    font-family: "AptosBold";
    src: url("webFonts/AptosBold/font.woff2") format("woff2"),
        url("webFonts/AptosBold/font.woff") format("woff");
}
@font-face {
    font-family: "AptosRegular";
    src: url("webFonts/AptosRegular/font.woff2") format("woff2"),
        url("webFonts/AptosRegular/font.woff") format("woff");
}
@font-face {
    font-family: "AptosItalic";
    src: url("webFonts/AptosItalic/font.woff2") format("woff2"),
        url("webFonts/AptosItalic/font.woff") format("woff");
}

.accordion-indicator {
    display: none;
}

/* Styles for the interactive AI knowledge quiz - PRESERVED AS ORIGINAL */
.section-quiz {
    background: linear-gradient(135deg, #ffd1dc 0%, #ffecd6 100%);
    padding: 40px 20px;
    border-radius: 8px;
}

#quizContainer {
    display: grid;
    grid-template-columns: 230px 510px;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    gap: 20px;
}

#terms,
#answers {
    display: none;
}

#terms,
.terms-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 230px;
    width: 230px;
}

#answers,
.answers-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 510px;
    width: 510px;
}

.term {
    cursor: grab;
    user-select: none;
    font-family: "Roboto", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 18px;
    text-align: center;
    display: flex;
    width: 230px;
    height: 80px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 10px;
    position: relative;
    border: 4px solid;
    border-color: transparent;
    border-image: linear-gradient(
            to bottom,
            rgb(255, 255, 255),
            rgba(255, 255, 255, 0) 51%,
            rgb(255, 255, 255) 100%
        )
        1;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(249.77, 249.77, 249.77, 0.3) 100%
    );
    touch-action: none; /* Needed for mobile drag */
    box-sizing: border-box; /* Include padding in height */
}

.term:active {
    cursor: grabbing;
}

.answer {
    flex: 1;
    font-family: "Roboto", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    display: flex;
    width: 510px;
    height: 80px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 10px;
    position: relative;
    border: 2px solid;
    border-color: transparent;
    box-shadow: inset 0px 0px 10px #ffffff, 0px 0px 10px #70c9e74f;
    border-image: linear-gradient(
            to bottom,
            rgb(255, 255, 255),
            rgba(255, 255, 255, 0) 51%,
            rgb(255, 255, 255) 100%
        )
        1;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(249.77, 249.77, 249.77, 0.05) 100%
    );
    box-sizing: border-box; /* Include padding in height */
}

/* Hide quiz section on mobile devices and show "Only on computers" message */

/* Create a container for the mobile message */
.quiz-mobile-notice {
    display: none;
    background: linear-gradient(135deg, #ffd1dc 0%, #ffecd6 100%);
    padding: 30px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.quiz-mobile-notice h3 {
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: #231f20;
    font-size: 22px;
    margin-bottom: 10px;
}

.quiz-mobile-notice p {
    font-family: "AptosRegular", sans-serif;
    font-weight: 400;
    color: #231f20;
    font-size: 16px;
    line-height: 1.5;
}

.computer-icon {
    font-size: 30px;
    margin-bottom: 15px;
    display: block;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    /* Hide the quiz components */
    .section-quiz .subhead,
    .section-quiz .frame-wrapper,
    #quizContainer,
    #feedbackMessage,
    .original-quiz-rows {
        display: none !important;
    }

    /* Show the mobile notice */
    .quiz-mobile-notice {
        display: block;
    }

    /* Adjust padding for the quiz section container */
    .section-quiz {
        padding: 30px 15px;
    }
}

/* For even smaller devices */
@media (max-width: 480px) {
    .quiz-mobile-notice h3 {
        font-size: 20px;
    }

    .quiz-mobile-notice p {
        font-size: 14px;
    }

    .computer-icon {
        font-size: 24px;
    }
}

.quiz-cell {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    height: 80px; /* Fixed height for all cells */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Roboto", sans-serif;
    margin: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-sizing: border-box; /* Ensure padding is included in height */
}

.quiz-term {
    font-weight: 700;
    color: #333;
    cursor: grab;
    border-right: none;
    border: 4px solid transparent;
    border-image: linear-gradient(
            to bottom,
            rgb(255, 255, 255),
            rgba(255, 255, 255, 0) 51%,
            rgb(255, 255, 255) 100%
        )
        1;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(249.77, 249.77, 249.77, 0.3) 100%
    );
}

.quiz-term:active {
    cursor: grabbing;
}

.quiz-definition {
    font-weight: 400;
    color: #444;
    border-left: none;
    border: 2px solid transparent;
    box-shadow: inset 0px 0px 10px #ffffff, 0px 0px 10px #70c9e74f;
    border-image: linear-gradient(
            to bottom,
            rgb(255, 255, 255),
            rgba(255, 255, 255, 0) 51%,
            rgb(255, 255, 255) 100%
        )
        1;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(249.77, 249.77, 249.77, 0.05) 100%
    );
}

.quiz-header {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.quiz-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.quiz-header p {
    font-size: 18px;
    opacity: 0.8;
}

#feedbackMessage,
.feedback-message {
    margin-top: 30px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px;
    font-family: "Roboto", Helvetica;
    line-height: 1.6;
}

.matched-pair {
    margin-bottom: 10px;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-complete {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(112, 201, 231, 0.3);
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(112, 201, 231, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(112, 201, 231, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(112, 201, 231, 0);
    }
}

.correct-match {
    position: relative;
}

.correct-match::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(124, 252, 0, 0.2);
    pointer-events: none;
    animation: fadeOut 0.8s ease forwards;
}

.incorrect-match {
    position: relative;
}

.incorrect-match::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 0, 0, 0.2);
    pointer-events: none;
    animation: fadeOut 0.8s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Responsive styles for quiz - PRESERVED AS ORIGINAL FOR IPAD AIR WIDTHS */
@media (max-width: 992px) {
    #quizContainer {
        grid-template-columns: 1fr;
    }

    #terms,
    .terms-container,
    #answers,
    .answers-container {
        width: 100%;
    }

    .term,
    .answer {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #quizContainer {
        grid-template-columns: 1fr;
    }

    .quiz-cell {
        height: auto;
        min-height: 80px; /* Ensure minimum height on mobile */
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .term,
    .answer {
        font-size: 16px;
        height: auto;
        min-height: 70px;
    }

    #feedbackMessage,
    .feedback-message {
        font-size: 14px;
    }
}

/* Main styles */
.sxbgb {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: rgba(255, 255, 255, 1);
    background: linear-gradient(
        180deg,
        rgb(179, 100, 128) 0%,
        rgb(226.24, 196.35, 206.95) 6%,
        rgb(238.23, 220.79, 226.97) 9%,
        rgb(255, 255, 255) 16.5%
    );
}

/* HEADER SECTION - RESPONSIVE UPDATES */
.sxbgb .frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 73px;
    padding: 100px 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background: linear-gradient(
        180deg,
        rgb(179, 100, 128) 0%,
        rgb(226.24, 196.35, 206.95) 6%,
        rgb(238.23, 220.79, 226.97) 9%,
        rgb(255, 255, 255) 16.5%
    );
}

.sxbgb .layer {
    position: relative;
    width: 816px;
    height: 279px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sxbgb .layer img {
    max-width: 100%;
    height: auto;
    max-height: 279px;
}

.sxbgb .overlap {
    position: absolute;
    width: 767px;
    height: 48px;
    top: 231px;
    left: 49px;
}

.sxbgb .vector {
    position: absolute;
    width: 576px;
    height: 48px;
    top: 0;
    left: 191px;
}

.sxbgb .group {
    position: absolute;
    width: 721px;
    height: 18px;
    top: 15px;
    left: 0;
}

.sxbgb .div {
    position: absolute;
    width: 783px;
    height: 190px;
    top: 0;
    left: 0;
}

.sxbgb .img {
    position: absolute;
    width: 95px;
    height: 44px;
    top: 796px;
    left: -621px;
}

.sxbgb .vector-2 {
    position: absolute;
    width: 93px;
    height: 38px;
    top: 741px;
    left: -621px;
}

.sxbgb .overlap-group {
    position: absolute;
    width: 361px;
    height: 190px;
    top: 0;
    left: 0;
}

.sxbgb .vector-3 {
    position: absolute;
    width: 207px;
    height: 190px;
    top: 0;
    left: 80px;
}

.sxbgb .group-2 {
    position: absolute;
    width: 141px;
    height: 137px;
    top: 24px;
    left: 220px;
}

.sxbgb .vector-4 {
    position: absolute;
    width: 56px;
    height: 1px;
    top: 43px;
    left: 59px;
}

.sxbgb .vector-5 {
    position: absolute;
    width: 144px;
    height: 137px;
    top: 24px;
    left: 0;
}

.sxbgb .vector-6 {
    position: absolute;
    width: 154px;
    height: 137px;
    top: 24px;
    left: 423px;
}

.sxbgb .vector-7 {
    position: absolute;
    width: 141px;
    height: 137px;
    top: 24px;
    left: 642px;
}

/* INTRO SECTION - RESPONSIVE UPDATES */
.sxbgb .section-black-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: #231f20;
}

.sxbgb .left {
    display: flex;
    flex-direction: column;
    width: 722px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 56px 60px 56px 34px;
    position: relative;
}

.sxbgb .headline {
    flex-direction: column;
    height: 39px;
    align-items: flex-start;
    padding: 0px 2px 10px;
    align-self: stretch;
    width: 100%;
    border-bottom-width: 4px;
    border-bottom-style: solid;
    border-color: #70c9e7;
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.sxbgb .BGB-TAKES-ON-SXSW {
    position: relative;
    width: 434px;
    max-width: 100%;
    margin-top: -7px;
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: transparent;
    font-size: 30px;
    letter-spacing: 0;
    line-height: normal;
}

.sxbgb .text-wrapper {
    color: #ffffff;
}

.sxbgb .span {
    color: #70c9e7;
}

.sxbgb .welcome-to-our-SXSW {
    position: relative;
    align-self: stretch;
    font-family: "AptosRegular", sans-serif;
    font-weight: 400;
    color: transparent;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
}

.sxbgb .text-wrapper-2 {
    font-weight: 700;
    color: #70c9e7;
}

.sxbgb .IMG {
    position: relative;
    width: 320px;
    height: 240px;
    object-fit: cover;
    max-width: 100%;
}

/* QUIZ SECTION - RESPONSIVE UPDATES */
.sxbgb .section-quiz {
    background-image: url(./img/section-quiz.png);
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 50px 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.sxbgb .subhead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 60px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.sxbgb .p {
    position: relative;
    width: 739px;
    max-width: 100%;
    margin-top: -1px;
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: #231f20;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.sxbgb .frame-wrapper {
    width: 1048px;
    max-width: 100%;
    align-items: center;
    padding: 10px;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.sxbgb .frame-2 {
    flex-direction: column;
    width: 698px;
    max-width: 100%;
    align-items: flex-start;
    padding: 12px 0px;
    display: flex;
    gap: 10px;
    position: relative;
}

.sxbgb .div-wrapper {
    justify-content: center;
    align-self: stretch;
    width: 100%;
    border-color: #ffffff;
    display: flex;
    height: 39px;
    align-items: center;
    gap: 10px;
    padding: 0px 2px 10px;
    position: relative;
    border-bottom-width: 4px;
    border-bottom-style: solid;
}

.sxbgb .text-wrapper-3 {
    position: relative;
    width: 434px;
    max-width: 100%;
    margin-top: -7px;
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: #231f20;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.sxbgb .text-wrapper-4 {
    position: relative;
    width: 434px;
    max-width: 100%;
    margin-top: -1px;
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: #231f20;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.sxbgb .row {
    display: flex;
    width: 786px;
    max-width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    flex: 0 0 auto;
}

.sxbgb .frame-3 {
    display: flex;
    width: 230px;
    max-width: 45%;
    height: 80px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 10px;
    position: relative;
    border: 4px solid;
    border-color: transparent;
    border-image: linear-gradient(
            to bottom,
            rgb(255, 255, 255),
            rgba(255, 255, 255, 0) 51%,
            rgb(255, 255, 255) 100%
        )
        1;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(249.77, 249.77, 249.77, 0.3) 100%
    );
}

.sxbgb .text-wrapper-5 {
    position: relative;
    flex: 1;
    font-family: "Roboto", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.sxbgb .frame-4 {
    display: flex;
    width: 510px;
    max-width: 55%;
    height: 80px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 10px;
    position: relative;
    border: 2px solid;
    border-color: transparent;
    box-shadow: inset 0px 0px 10px #ffffff, 0px 0px 10px #70c9e74f;
    border-image: linear-gradient(
            to bottom,
            rgb(255, 255, 255),
            rgba(255, 255, 255, 0) 51%,
            rgb(255, 255, 255) 100%
        )
        1;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(249.77, 249.77, 249.77, 0.05) 100%
    );
}

.sxbgb .text-wrapper-6 {
    position: relative;
    flex: 1;
    font-family: "AptosRegular", sans-serif;
    font-weight: 500;
    color: #000000;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.sxbgb .frame-5 {
    display: flex;
    width: 510px;
    max-width: 55%;
    height: 80px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 10px;
    position: relative;
    border: 2px solid;
    border-color: transparent;
    border-image: linear-gradient(
            to bottom,
            rgb(255, 255, 255),
            rgba(255, 255, 255, 0) 51%,
            rgb(255, 255, 255) 100%
        )
        1;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(249.77, 249.77, 249.77, 0.05) 100%
    );
}

/* All other styles from original file */

.sxbgb .div-2 {
    background-color: #231f20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.sxbgb .headline-2 {
    width: 1048px;
    max-width: 100%;
    align-items: center;
    padding: 10px;
    flex: 0 0 auto;
    background-color: #231f20;
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.sxbgb .frame-6 {
    display: flex;
    flex-direction: column;
    width: 1048px;
    max-width: 100%;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0px;
    position: relative;
    margin-left: -10px;
    margin-right: -10px;
}

.sxbgb .frame-7 {
    display: flex;
    height: 39px;
    align-items: center;
    gap: 10px;
    padding: 0px 2px 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    border-bottom-width: 4px;
    border-bottom-style: solid;
    border-color: #70c9e7;
}

.sxbgb .text-wrapper-7 {
    position: relative;
    width: 434px;
    max-width: 100%;
    margin-top: -7px;
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 30px;
    letter-spacing: 0;
    line-height: normal;
}

.sxbgb .div-wrapper-2 {
    display: flex;
    width: 1048px;
    max-width: 100%;
    align-items: center;
    gap: 10px;
    padding: 10px 60px;
    position: relative;
    flex: 0 0 auto;
}

.sxbgb .text-wrapper-8 {
    position: relative;
    width: 434px;
    max-width: 100%;
    margin-top: -1px;
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: #70c9e7;
    font-size: 24px;
    letter-spacing: 0;
    line-height: normal;
}

.sxbgb .line {
    display: flex;
    width: 1048px;
    max-width: 100%;
    align-items: center;
    gap: 24px;
    padding: 10px 60px;
    position: relative;
    flex: 0 0 auto;
}

.sxbgb .frame-8 {
    position: relative;
    width: 90px;
    height: 90px;
    border: 0.25px solid;
    border-color: #ffffff;
    flex-shrink: 0;
}

.sxbgb .arrows-icon {
    position: absolute;
    width: 51px;
    height: 47px;
    top: 21px;
    left: 20px;
}

.sxbgb .frame-9 {
    display: flex;
    flex-direction: column;
    width: 778px;
    max-width: calc(100% - 114px);
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 10px 0px;
    position: relative;
}

.sxbgb .text-wrapper-9 {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}

.sxbgb .text-wrapper-10 {
    position: relative;
    align-self: stretch;
    font-family: "AptosRegular", sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.sxbgb .data-icon {
    position: relative;
    width: 52px;
    height: 52px;
    top: 19px;
    left: 20px;
}

.sxbgb .overlap-group-2 {
    position: relative;
    height: 52px;
}

.sxbgb .group-3 {
    position: absolute;
    width: 51px;
    height: 28px;
    top: 24px;
    left: 0;
}

.sxbgb .group-4 {
    position: absolute;
    width: 51px;
    height: 28px;
    top: 0;
    left: 1px;
}

.sxbgb .connected-puzzle {
    position: relative;
    width: 52px;
    height: 48px;
    top: 20px;
    left: 19px;
}

.sxbgb .overlap-group-3 {
    position: relative;
    height: 48px;
}

.sxbgb .vector-8 {
    position: absolute;
    width: 50px;
    height: 48px;
    top: 0;
    left: 1px;
}

.sxbgb .group-5 {
    position: absolute;
    width: 52px;
    height: 43px;
    top: 3px;
    left: 0;
}

.sxbgb .vector-9 {
    position: absolute;
    width: 8px;
    height: 8px;
    top: 0;
    left: 0;
}

.sxbgb .vector-10 {
    position: absolute;
    width: 8px;
    height: 8px;
    top: 35px;
    left: 44px;
}

.sxbgb .group-6 {
    position: absolute;
    width: 8px;
    height: 12px;
    top: 28px;
    left: 12px;
}

.sxbgb .group-7 {
    position: absolute;
    width: 8px;
    height: 12px;
    top: 3px;
    left: 33px;
}

.sxbgb .section-white {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 50px 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.sxbgb .header {
    display: flex;
    width: 1048px;
    max-width: 100%;
    align-items: center;
    gap: 10px;
    padding: 10px 60px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff;
}

.sxbgb .text-wrapper-11 {
    position: relative;
    width: 434px;
    max-width: 100%;
    margin-top: -1px;
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: #231f20;
    font-size: 24px;
    letter-spacing: 0;
    line-height: normal;
}

.sxbgb .line-2 {
    background-color: #ffffff;
    display: flex;
    width: 1048px;
    max-width: 100%;
    align-items: center;
    gap: 24px;
    padding: 10px 60px;
    position: relative;
    flex: 0 0 auto;
}

.sxbgb .frame-10 {
    position: relative;
    width: 90px;
    height: 90px;
    border: 0.25px solid;
    border-color: #231f20;
    flex-shrink: 0;
}

.sxbgb .img-2 {
    position: absolute;
    width: 52px;
    height: 52px;
    top: 18px;
    left: 19px;
}

.sxbgb .text-wrapper-12 {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: #231f20;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}

.sxbgb .text-wrapper-13 {
    position: relative;
    align-self: stretch;
    font-family: "AptosRegular", sans-serif;
    font-weight: 400;
    color: #231f20;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.sxbgb .circuit-icon {
    position: relative;
    width: 51px;
    height: 51px;
    top: 18px;
    left: 19px;
}

.sxbgb .overlap-group-4 {
    position: relative;
    height: 51px;
}

.sxbgb .group-8 {
    position: absolute;
    width: 51px;
    height: 34px;
    top: 0;
    left: 0;
}

.sxbgb .group-9 {
    position: absolute;
    width: 51px;
    height: 34px;
    top: 17px;
    left: 0;
}

.sxbgb .overlap-group-wrapper {
    position: relative;
    width: 52px;
    height: 52px;
    top: 18px;
    left: 19px;
}

.sxbgb .group-10 {
    position: absolute;
    width: 30px;
    height: 52px;
    top: 0;
    left: 21px;
}

.sxbgb .group-11 {
    position: absolute;
    width: 23px;
    height: 52px;
    top: 0;
    left: 0;
}

.sxbgb .icons-2 {
    position: relative;
    width: 45px;
    height: 52px;
    top: 18px;
    left: 23px;
}

.sxbgb .group-12 {
    position: absolute;
    width: 30px;
    height: 52px;
    top: 0;
    left: 14px;
}

.sxbgb .group-13 {
    position: absolute;
    width: 30px;
    height: 52px;
    top: 0;
    left: 0;
}

.sxbgb .icons-3 {
    position: relative;
    width: 53px;
    height: 53px;
    top: 17px;
    left: 19px;
}

.sxbgb .overlap-group-5 {
    position: relative;
    height: 53px;
}

.sxbgb .group-14 {
    position: absolute;
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
}

.sxbgb .group-15 {
    position: absolute;
    width: 35px;
    height: 36px;
    top: 17px;
    left: 18px;
}

.sxbgb .icons-4 {
    position: absolute;
    width: 52px;
    height: 52px;
    top: 18px;
    left: 20px;
}

.sxbgb .icons-5 {
    position: relative;
    width: 56px;
    height: 49px;
    top: 20px;
    left: 17px;
}

.sxbgb .overlap-group-6 {
    position: relative;
    height: 49px;
}

.sxbgb .group-16 {
    position: absolute;
    width: 56px;
    height: 48px;
    top: 0;
    left: 0;
}

.sxbgb .vector-11 {
    position: absolute;
    width: 8px;
    height: 11px;
    top: 6px;
    left: 32px;
}

.sxbgb .vector-12 {
    position: absolute;
    width: 13px;
    height: 3px;
    top: 23px;
    left: 7px;
}

.sxbgb .vector-13 {
    position: absolute;
    width: 41px;
    height: 23px;
    top: 26px;
    left: 16px;
}

.sxbgb .vector-14 {
    position: absolute;
    width: 8px;
    height: 11px;
    top: 32px;
    left: 32px;
}

.sxbgb .overlap-wrapper {
    position: relative;
    width: 52px;
    height: 45px;
    top: 22px;
    left: 20px;
}

.sxbgb .overlap-2 {
    position: relative;
    height: 45px;
}

.sxbgb .group-17 {
    position: absolute;
    width: 49px;
    height: 39px;
    top: 0;
    left: 0;
}

.sxbgb .overlap-group-7 {
    position: relative;
    height: 39px;
}

.sxbgb .group-18 {
    position: absolute;
    width: 40px;
    height: 22px;
    top: 0;
    left: 0;
}

.sxbgb .group-19 {
    position: absolute;
    width: 39px;
    height: 27px;
    top: 8px;
    left: 5px;
}

.sxbgb .group-20 {
    position: absolute;
    width: 39px;
    height: 22px;
    top: 17px;
    left: 10px;
}

.sxbgb .group-21 {
    position: absolute;
    width: 52px;
    height: 45px;
    top: 0;
    left: 0;
}

.sxbgb .vector-15 {
    position: absolute;
    width: 42px;
    height: 28px;
    top: 17px;
    left: 10px;
}

.sxbgb .vector-16 {
    position: absolute;
    width: 42px;
    height: 28px;
    top: 8px;
    left: 5px;
}

.sxbgb .group-22 {
    position: absolute;
    width: 42px;
    height: 28px;
    top: 0;
    left: 0;
}

.sxbgb .icons-6 {
    position: absolute;
    width: 53px;
    height: 55px;
    top: 16px;
    left: 19px;
}

.sxbgb .icons-7 {
    position: absolute;
    width: 52px;
    height: 52px;
    top: 19px;
    left: 19px;
}

.sxbgb .icons-8 {
    position: relative;
    width: 59px;
    height: 51px;
    top: 20px;
    left: 16px;
}

.sxbgb .group-23 {
    position: absolute;
    width: 59px;
    height: 23px;
    top: 0;
    left: 0;
}

.sxbgb .group-24 {
    position: absolute;
    width: 59px;
    height: 23px;
    top: 28px;
    left: 0;
}

.sxbgb .vector-17 {
    position: absolute;
    width: 59px;
    height: 1px;
    top: 25px;
    left: 0;
}

.sxbgb .icons-9 {
    position: absolute;
    width: 51px;
    height: 53px;
    top: 19px;
    left: 20px;
}

.sxbgb .icons-10 {
    position: absolute;
    width: 45px;
    height: 55px;
    top: 17px;
    left: 23px;
}

.sxbgb .icons-11 {
    position: absolute;
    width: 52px;
    height: 52px;
    top: 19px;
    left: 20px;
}

.sxbgb .icons-12 {
    position: relative;
    width: 53px;
    height: 53px;
    top: 17px;
    left: 19px;
    overflow: hidden;
}

.sxbgb .group-25 {
    position: absolute;
    width: 27px;
    height: 31px;
    top: 22px;
    left: 26px;
}

.sxbgb .vector-18 {
    position: absolute;
    width: 1px;
    height: 1px;
    top: -4630px;
    left: -1242px;
}

.sxbgb .vector-wrapper {
    position: absolute;
    width: 27px;
    height: 31px;
    top: 0;
    left: 0;
    background-image: url(./img/group-21.png);
    background-size: 100% 100%;
}

.sxbgb .vector-19 {
    position: absolute;
    width: 1px;
    height: 1px;
    top: -4626px;
    left: -1249px;
}

.sxbgb .group-26 {
    position: absolute;
    width: 26px;
    height: 31px;
    top: 23px;
    left: 0;
}

.sxbgb .overlap-group-8 {
    position: relative;
    height: 31px;
}

.sxbgb .vector-20 {
    position: absolute;
    width: 12px;
    height: 20px;
    top: 9px;
    left: 14px;
}

.sxbgb .group-27 {
    position: absolute;
    width: 26px;
    height: 31px;
    top: 0;
    left: 0;
}

.sxbgb .group-28 {
    position: absolute;
    width: 27px;
    height: 31px;
    top: 0;
    left: 13px;
}

.sxbgb .vector-21 {
    position: absolute;
    width: 1px;
    height: 1px;
    top: -4604px;
    left: -1236px;
}

.sxbgb .img-wrapper {
    position: absolute;
    width: 27px;
    height: 31px;
    top: 0;
    left: 0;
    background-image: url(./img/group-23.png);
    background-size: 100% 100%;
}

.sxbgb .icons-13 {
    position: absolute;
    width: 48px;
    height: 55px;
    top: 18px;
    left: 21px;
}

.sxbgb .icons-14 {
    position: relative;
    width: 56px;
    height: 49px;
    top: 21px;
    left: 18px;
}

.sxbgb .group-29 {
    position: absolute;
    width: 39px;
    height: 24px;
    top: 24px;
    left: 18px;
}

.sxbgb .group-30 {
    position: absolute;
    width: 39px;
    height: 24px;
    top: 0;
    left: 14px;
}

.sxbgb .group-31 {
    position: absolute;
    width: 28px;
    height: 42px;
    top: 6px;
    left: 0;
}

.sxbgb .text-wrapper-14 {
    position: relative;
    width: 718px;
    max-width: 100%;
    margin-top: -7px;
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 30px;
    letter-spacing: 0;
    line-height: normal;
}

/* WHERE WE SPENT OUR TIME SECTION - RESPONSIVE UPDATES */
.sxbgb .frame-11 {
    position: relative;
    position: relative;
    width: 90%;
    max-width: 850px;
    margin: 0 auto;
}

.sxbgb .frame-12 {
    position: relative;
    width: 100%;
    height: auto;
    margin: 30px auto 0;
}

.sxbgb .frame-12 img {
    width: 100%;
    height: auto;
    display: block;
}

.sxbgb .text-wrapper-14 {
    position: relative;
    width: 100%;
    max-width: 718px;
    margin-top: -7px;
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: clamp(20px, 4vw, 30px);
    letter-spacing: 0;
    line-height: 1.3;
    text-align: center;
}

/* Media Queries */
@media (max-width: 1200px) {
    .sxbgb .frame-11 {
        width: 85%;
    }
}

@media (max-width: 992px) {
    .sxbgb .frame-11 {
        width: 90%;
    }

    .sxbgb .div-2 {
        padding: 30px 10px;
    }

    .sxbgb .frame-12 {
        margin: 20px auto 0;
    }
}

@media (max-width: 768px) {
    .sxbgb .frame-11 {
        width: 95%;
    }

    .sxbgb .frame-6 {
        padding: 10px 15px;
    }

    .sxbgb .frame-7 {
        height: auto;
        min-height: 35px;
    }
}

@media (max-width: 576px) {
    .sxbgb .div-2 {
        padding: 25px 10px;
    }

    .sxbgb .frame-6,
    .sxbgb .frame-7 {
        padding: 8px 10px;
    }

    .sxbgb .frame-12 {
        margin: 15px auto 0;
    }
}

@media (max-width: 480px) {
    .sxbgb .div-2 {
        padding: 20px 5px;
    }

    .sxbgb .frame-11 {
        width: 98%;
    }
}

.sxbgb .overlap-group-9 {
    position: relative;
    height: 100%;
    width: 100%;
}

.sxbgb .layer-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.sxbgb .vector-22,
.sxbgb .vector-23,
.sxbgb .vector-24,
.sxbgb .vector-25,
.sxbgb .group-32,
.sxbgb .group-33,
.sxbgb .group-34,
.sxbgb .group-35,
.sxbgb .vector-26,
.sxbgb .vector-27,
.sxbgb .vector-28,
.sxbgb .vector-29 {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 100%;
}

.sxbgb .layer-3 {
    position: absolute;
    width: 237px;
    height: 104px;
    top: 29%;
    left: 32%;
    max-width: 100%;
}

.sxbgb .overlap-3,
.sxbgb .overlap-4,
.sxbgb .overlap-5,
.sxbgb .vector-30 {
    position: absolute;
    width: 40px;
    height: 40px;
}

.sxbgb .overlap-3 {
    top: 4px;
    left: 198px;
}

.sxbgb .overlap-4 {
    top: 62px;
    left: 198px;
}

.sxbgb .overlap-5 {
    top: 64px;
    left: 0;
}

.sxbgb .group-36,
.sxbgb .group-37,
.sxbgb .group-38,
.sxbgb .group-39 {
    position: absolute;
    max-width: 100%;
}

/* REACH OUT SECTION - RESPONSIVE UPDATES */
.sxbgb .section-white-end {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px 20px 100px;
    position: relative;
    width: 100%;
    background: linear-gradient(
        180deg,
        rgb(255, 255, 255) 83.5%,
        rgb(238.23, 220.79, 226.97) 91%,
        rgb(226.24, 196.35, 206.95) 94%,
        rgb(179, 100, 128) 100%
    );
}

.sxbgb .frame-13 {
    width: 100%;
    max-width: 1048px;
    padding: 10px 20px;
}

.sxbgb .frame-14 {
    width: 100%;
    max-width: calc(100% - 20px);
    margin: 0;
    overflow: hidden;
    border-color: #70c9e7;
    display: flex;
    height: auto;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    position: relative;
    border-bottom-width: 4px;
    border-bottom-style: solid;
}

.sxbgb .text-wrapper-15 {
    position: relative;
    width: 100%;
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: #231f20;
    font-size: clamp(20px, 4vw, 30px);
    letter-spacing: 0;
    line-height: 1.3;
    text-align: center;
}

.sxbgb .frame-15 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
}

.sxbgb .IMG-wrapper {
    width: 100%;
    max-width: 620px;
    text-align: center;
}

.sxbgb .IMG-2 {
    width: 100%;
    max-width: 620px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.sxbgb .liza-kotik-creative {
    width: 100%;
    max-width: 620px;
    margin: 20px auto 0;
    padding: 0 10px;
    font-family: "AptosRegular", sans-serif;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
}

/* Media Queries */
@media (max-width: 1200px) {
    .sxbgb .section-white-end {
        padding: 40px 20px 80px;
    }
}

@media (max-width: 992px) {
    .sxbgb .section-white-end {
        padding: 35px 15px 70px;
    }

    .sxbgb .frame-13 {
        padding: 10px 15px;
    }

    .sxbgb .IMG-2 {
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .sxbgb .section-white-end {
        padding: 30px 15px 60px;
        gap: 15px;
    }

    .sxbgb .frame-13,
    .sxbgb .frame-15 {
        padding: 10px;
    }

    .sxbgb .IMG-2 {
        max-width: 90%;
    }

    .sxbgb .liza-kotik-creative {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .sxbgb .section-white-end {
        padding: 25px 10px 50px;
        gap: 10px;
    }

    .sxbgb .frame-14 {
        min-height: 30px;
        padding-bottom: 8px;
    }

    .sxbgb .IMG-2 {
        max-width: 95%;
    }

    .sxbgb .liza-kotik-creative {
        font-size: 14px;
    }

    .email-button {
        padding: 8px 15px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .sxbgb .section-white-end {
        padding: 20px 8px 40px;
    }

    .sxbgb .IMG-2 {
        max-width: 100%;
    }
}

.sxbgb .text-wrapper-16 {
    font-weight: 700;
}

.sxbgb .text-wrapper-17 {
    font-family: "AptosRegular", sans-serif;
    font-weight: 400;
    color: #231f20;
    font-size: 16px;
    letter-spacing: 0;
}

/* Expanded article styles */
.expanded-article {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
    color: black; /* Default text color */
    font-family: "AptosRegular", sans-serif;
    font-weight: 400;
    background: linear-gradient(
        180deg,
        rgb(255, 255, 255) 46.5%,
        rgb(249.77, 249.77, 249.77) 100%
    );
}
.expanded-article p {
    margin-bottom: 20px;
}

.expanded-article em {
    font-family: "AptosItalic";
}
.expanded-article strong {
    font-family: "AptosBold";
}

/* When expanded-article is nested inside .div-2, text is white */
.div-2 .expanded-article {
    color: white;
    background: linear-gradient(
        180deg,
        rgba(35, 31, 32, 0) 46.5%,
        rgb(0, 0, 0) 100%
    );
}

/* Default styling for the speakers box */
.speakers {
    background-color: #fafafa;
    border: 1px solid #000;
    border-radius: 25px;
    padding: 20px; /* Optional inner spacing */
    width: 75%;
    margin: 20px auto;
}

/* Override speakers styling when nested inside .div-2 */
.div-2 .expanded-article .speakers {
    background-color: #2e2b23;
    border: 1px solid #fff;
}

/* h3 tag: centered and bold */
.speakers h3 {
    text-align: center;
    font-family: "AptosBold";
    font-weight: bold;
    margin: 10px;
}

/* When h3 is nested in .div-2, color it #70C9E7 and set font-size to 16px */
.div-2 .expanded-article .speakers h3 {
    color: #70c9e7;
    font-size: 16px;
}

/* Speaker list */
.speaker-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px; /* Space between each speaker-info */
    flex-wrap: wrap;
}

/* Each speaker-info */
.speaker-info {
    display: flex;
    align-items: center;
    max-width: 180px;
}

.speaker-info img {
    max-width: 60px;
    margin-right: 10px;
}

.speaker-info .details {
    color: #000;
    font-family: "AptosRegular", sans-serif;
    font-weight: 400;
    font-size: 12px;
    max-width: 200px;
}

.div-2 .expanded-article .speaker-info .details {
    color: #fff;
}

/* Names to the right of the thumbnail */
.speaker-info .details strong {
    display: block;
    font-weight: bold;
    font-family: "AptosBold";
}

/* Photos */
.photos {
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.photos img {
    margin-right: 20px;
    margin-bottom: 10px;
    max-width: 100%;
}

/* RESPONSIVE MEDIA QUERIES FOR HEADER TO QUIZ SECTION */
@media (max-width: 1200px) {
    .sxbgb .layer {
        width: 80%;
        height: auto;
    }

    .sxbgb .frame {
        padding: 80px 0;
        gap: 50px;
    }

    .sxbgb .left {
        padding: 40px 40px 40px 25px;
    }

    .sxbgb .BGB-TAKES-ON-SXSW {
        font-size: 26px;
    }

    .sxbgb .text-wrapper-3 {
        font-size: 26px;
    }

    .sxbgb .frame-wrapper,
    .sxbgb .div-wrapper-2,
    .sxbgb .line,
    .sxbgb .line-2 {
        width: 100%;
        max-width: 1048px;
    }

    /* Where we spent our time responsiveness */
    .sxbgb .frame-11 {
        width: 90%;
    }

    .sxbgb .frame-12 {
        width: 80%;
        margin: 40px auto 0;
    }

    /* Reach out section responsiveness */
    .sxbgb .IMG-2 {
        width: 500px;
    }

    .sxbgb .frame-15 {
        padding: 10px 30px;
    }
}

@media (max-width: 992px) {
    .sxbgb .section-black-intro {
        flex-direction: column;
    }

    .sxbgb .left {
        width: 100%;
        max-width: 100%;
        order: 2;
        padding: 40px 30px;
    }

    .sxbgb .IMG {
        order: 1;
        margin: 0 auto;
    }

    .sxbgb .frame-6,
    .sxbgb .line,
    .sxbgb .line-2 {
        padding: 12px 30px;
    }

    .sxbgb .text-wrapper-3 {
        font-size: 24px;
    }

    .sxbgb .frame-8,
    .sxbgb .frame-10 {
        width: 80px;
        height: 80px;
    }

    .sxbgb .frame-9 {
        width: calc(100% - 100px);
        max-width: calc(100% - 100px);
    }

    .sxbgb .section-quiz {
        padding: 40px 15px;
    }

    .sxbgb .subhead {
        padding: 10px 30px;
    }

    .sxbgb .frame-13,
    .sxbgb .frame-15 {
        width: 100%;
        max-width: 100%;
    }

    .sxbgb .frame-14 {
        width: 100%;
        margin-right: 0;
    }

    .speaker-list {
        flex-wrap: wrap;
    }

    /* Where we spent our time responsiveness */
    .sxbgb .frame-12 {
        width: 75%;
        margin: 30px auto 0;
    }

    /* Reach out section responsiveness */
    .sxbgb .frame-15 {
        flex-direction: column;
        gap: 30px;
    }

    .sxbgb .text-wrapper-7,
    .sxbgb .text-wrapper-14,
    .sxbgb .text-wrapper-15 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .sxbgb .frame {
        padding: 60px 0;
    }

    .sxbgb .layer {
        width: 90%;
        height: auto;
    }

    .sxbgb .left {
        padding: 30px 20px;
    }

    .sxbgb .BGB-TAKES-ON-SXSW {
        font-size: 22px;
        line-height: 1.3;
    }

    .sxbgb .welcome-to-our-SXSW {
        font-size: 16px;
    }

    .sxbgb .text-wrapper-3 {
        font-size: 22px;
    }

    .sxbgb .text-wrapper-4 {
        font-size: 16px;
    }

    .sxbgb .p {
        font-size: 16px;
    }

    .sxbgb .text-wrapper-7,
    .sxbgb .text-wrapper-14,
    .sxbgb .text-wrapper-15 {
        font-size: 22px;
    }

    .sxbgb .text-wrapper-8,
    .sxbgb .text-wrapper-11 {
        font-size: 20px;
    }

    .sxbgb .line,
    .sxbgb .line-2 {
        gap: 15px;
        padding: 10px 20px;
    }

    .sxbgb .text-wrapper-9,
    .sxbgb .text-wrapper-12 {
        font-size: 16px;
        white-space: normal;
    }

    .sxbgb .text-wrapper-10,
    .sxbgb .text-wrapper-13 {
        font-size: 14px;
    }

    .sxbgb .frame-8,
    .sxbgb .frame-10 {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .sxbgb .frame-9 {
        width: calc(100% - 85px);
        max-width: calc(100% - 85px);
    }

    .sxbgb .frame-6 {
        padding: 12px 20px;
    }

    .sxbgb .frame-15 {
        flex-direction: column;
        gap: 30px;
        padding: 10px 20px;
    }

    .sxbgb .IMG-2 {
        width: 100%;
        height: auto;
    }

    .expanded-article {
        padding: 0 20px;
    }

    .speakers {
        width: 90%;
        padding: 15px;
    }

    /* Where we spent our time responsiveness */
    .sxbgb .frame-11 {
        width: 95%;
    }

    .sxbgb .frame-12 {
        width: 85%;
        margin: 25px auto 0;
    }
}

@media (max-width: 576px) {
    .sxbgb .frame {
        padding: 40px 0;
        gap: 30px;
    }

    .sxbgb .BGB-TAKES-ON-SXSW {
        font-size: 20px;
    }

    .sxbgb .welcome-to-our-SXSW {
        font-size: 14px;
    }

    .sxbgb .text-wrapper-3 {
        font-size: 20px;
    }

    .sxbgb .text-wrapper-4,
    .sxbgb .p {
        font-size: 14px;
    }

    .sxbgb .text-wrapper-7,
    .sxbgb .text-wrapper-8,
    .sxbgb .text-wrapper-11,
    .sxbgb .text-wrapper-14,
    .sxbgb .text-wrapper-15 {
        font-size: 18px;
    }

    .sxbgb .frame-8,
    .sxbgb .frame-10 {
        width: 60px;
        height: 60px;
    }

    .sxbgb .frame-9 {
        width: calc(100% - 75px);
        max-width: calc(100% - 75px);
    }

    .sxbgb .arrows-icon,
    .sxbgb .img-2,
    .sxbgb .icons-4,
    .sxbgb .icons-5,
    .sxbgb .data-icon,
    .sxbgb .connected-puzzle {
        width: 40px;
        height: 40px;
        top: 10px;
        left: 10px;
    }

    .sxbgb .section-quiz {
        padding: 30px 10px;
    }

    .sxbgb .subhead {
        padding: 10px 15px;
    }

    .sxbgb .frame-6,
    .sxbgb .div-wrapper-2 {
        padding: 10px 15px;
    }

    .sxbgb .line,
    .sxbgb .line-2 {
        padding: 8px 15px;
        gap: 10px;
    }

    .expanded-article {
        padding: 0 15px;
        font-size: 14px;
    }

    .speakers {
        width: 100%;
        padding: 10px;
        border-radius: 15px;
    }

    .speaker-list {
        gap: 15px;
    }

    .speaker-info {
        max-width: 100%;
    }

    .speaker-info img {
        max-width: 50px;
    }

    /* Where we spent our time responsiveness */
    .sxbgb .frame-12 {
        width: 95%;
        margin: 20px auto 0;
    }

    /* Adjust icons and graphics for smaller screens */
    .sxbgb .circuit-icon,
    .sxbgb .overlap-group-wrapper,
    .sxbgb .icons-2,
    .sxbgb .icons-3,
    .sxbgb .icons-8,
    .sxbgb .icons-10,
    .sxbgb .icons-11,
    .sxbgb .icons-12,
    .sxbgb .icons-13,
    .sxbgb .icons-14 {
        transform: scale(0.8);
        transform-origin: center;
    }
}

@media (max-width: 480px) {
    .sxbgb .frame {
        padding: 30px 0;
    }

    .sxbgb .layer {
        width: 95%;
    }

    .sxbgb .BGB-TAKES-ON-SXSW {
        font-size: 18px;
    }

    .sxbgb .welcome-to-our-SXSW {
        font-size: 13px;
    }

    .sxbgb .left {
        padding: 20px 15px;
    }

    .sxbgb .text-wrapper-3 {
        font-size: 18px;
    }

    .sxbgb .text-wrapper-4,
    .sxbgb .p {
        font-size: 13px;
    }

    .sxbgb .frame-8,
    .sxbgb .frame-10 {
        width: 50px;
        height: 50px;
    }

    .sxbgb .frame-9 {
        width: calc(100% - 60px);
        max-width: calc(100% - 60px);
    }

    .sxbgb .text-wrapper-9,
    .sxbgb .text-wrapper-12 {
        font-size: 14px;
    }

    .sxbgb .text-wrapper-10,
    .sxbgb .text-wrapper-13 {
        font-size: 13px;
    }

    .sxbgb .arrows-icon,
    .sxbgb .img-2,
    .sxbgb .icons-4,
    .sxbgb .icons-5,
    .sxbgb .data-icon,
    .sxbgb .connected-puzzle {
        width: 30px;
        height: 30px;
        top: 10px;
        left: 10px;
    }

    .expanded-article {
        padding: 0 10px;
        font-size: 13px;
    }

    .speaker-info img {
        max-width: 40px;
    }

    /* Where we spent our time section */
    .sxbgb .frame-11 {
        width: 100%;
    }

    .sxbgb .frame-12 {
        width: 95%;
        margin: 15px auto 0;
    }

    /* For all icons in smaller screens */
    .sxbgb .circuit-icon,
    .sxbgb .overlap-group-wrapper,
    .sxbgb .icons-2,
    .sxbgb .icons-3,
    .sxbgb .icons-8,
    .sxbgb .icons-10,
    .sxbgb .icons-11,
    .sxbgb .icons-12,
    .sxbgb .icons-13,
    .sxbgb .icons-14 {
        transform: scale(0.7);
        transform-origin: center;
    }

    /* REACHOUT section */
    .sxbgb .liza-kotik-creative {
        font-size: 14px;
    }
}

/* Bold headline */
.sxbgb .BGB-TAKES-ON-SXSW {
    position: relative;
    margin-top: -7px;
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: transparent;
    font-size: 30px;
    letter-spacing: 0;
    line-height: normal;
}

/* Regular introductory text */
.sxbgb .welcome-to-our-SXSW {
    position: relative;
    align-self: stretch;
    font-family: "AptosRegular", sans-serif;
    font-weight: 400;
    color: transparent;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
}

/* Bold paragraph */
.sxbgb .p {
    position: relative;
    margin-top: -1px;
    font-family: "AptosBold", sans-serif;
    font-weight: 700;
    color: #231f20;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

/* Bold text wrappers */
.sxbgb .text-wrapper-3,
.sxbgb .text-wrapper-4,
.sxbgb .text-wrapper-7,
.sxbgb .text-wrapper-8,
.sxbgb .text-wrapper-9,
.sxbgb .text-wrapper-11,
.sxbgb .text-wrapper-12,
.sxbgb .text-wrapper-14,
.sxbgb .text-wrapper-15 {
    font-family: "AptosBold", sans-serif;
}

/* Set individual font weights as needed */
.sxbgb .text-wrapper-3,
.sxbgb .text-wrapper-7,
.sxbgb .text-wrapper-14,
.sxbgb .text-wrapper-15 {
    font-weight: 700;
    font-size: 30px;
}

.sxbgb .text-wrapper-4,
.sxbgb .text-wrapper-8 {
    font-weight: 700;
    font-size: 18px;
}

.sxbgb .text-wrapper-9,
.sxbgb .text-wrapper-11,
.sxbgb .text-wrapper-12 {
    font-weight: 700;
    font-size: 18px;
}

/* Regular text wrappers */
.sxbgb .welcome-to-our-SXSW,
.sxbgb .text-wrapper-10,
.sxbgb .text-wrapper-13,
.sxbgb .liza-kotik-creative,
.sxbgb .text-wrapper-17 {
    font-family: "AptosRegular", sans-serif;
    font-weight: 400;
}

/* For any text using a 500 weight, default to the Regular since no medium is provided */
.sxbgb .text-wrapper-6 {
    font-family: "AptosRegular", sans-serif;
    font-weight: 500;
}
