:root {
    --accent-color: #FF8C00;
    --primary-color: #222;
    --background-color: #fff;
    --text-color-light: #3d3d3d;
    --border-color: #ddd;
    --light-gray-bg: #f8f8f8;
    --accent-color: #FF8C00;
    --swiper-navigation-color: var(--accent-color);
    --swiper-pagination-color: var(--accent-color);
}

h2 {
    font-size: 32px;
    text-align: left;
}

p {
    font-size: 18px;
    color: var(--text-color-light);
    text-align: left;
}

strong {
    font-weight: 700;
    color: var(--primary-color);
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

section+section {
    padding-top: 0;
}

.logo {
    display: block;
    text-align: center;
    font-family: 'Touche', sans-serif;
    font-size: 1.5rem;
    color: inherit;
    text-decoration: none;
}

.banner-section {
    width: 100%;
    height: 55vh;
    padding: 0;
    background-image: url('images/yuca/yuca-banner-desktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.two-column-layout {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    margin-top: 1.8rem;
}

.two-column-layout .column {
    flex: 1;
}

.problem-section {
    padding: 3rem;
    background-color: var(--light-gray-bg);
}

.problem-section h2,
.tools-section h2 {
    text-align: center;
}

.problem-section p {
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    color: var(--primary-color);
}

.tools-section {
    padding: 3rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
    list-style: none;
    padding: 50px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 900px;
    margin: 1.8rem auto 0 auto;
}

.tools-grid li {
    font-family: 'Gilroy', sans-serif;
    font-size: 1rem;
    color: var(--text-color-light);
}

.research-box {
    background-color: var(--light-gray-bg);
    border-radius: 12px;
    padding: 50px;
    margin-top: 1.5rem;
}

.desk-research-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
    align-items: start;
}

.research-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.research-item img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.research-item blockquote {
    background-color: #2c2c2c;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    font-family: 'Gilroy', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    width: 100%;
    max-width: 450px;
    border-left: 5px solid var(--accent-color);
    margin: 0;
    text-align: left;
}

.research-item blockquote strong {
    display: block;
    margin-bottom: 10px;
    font-family: 'Touche', sans-serif;
    color: #fff;
}

.research-item:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
}

.research-intro-section .two-column-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.research-intro-section .text-content {
    flex: 1.5;
}

.research-intro-section .image-content {
    flex: 1;
    text-align: center;
}

.research-intro-section .image-content img {
    max-width: 100%;
    height: auto;
    max-height: 220px;
}

.qualitative-preview-section {
    padding-top: 60px;
}

.qualitative-preview-section h2,
.qualitative-preview-section p,
.personas-section h2,
.gallery-section h2,
.gallery-section p,
.prioritization-grid-section h2,
.prioritization-grid-section p,
.wireframes-section h2,
.wireframes-section p,
.grid-system-section h2,
.grid-system-section p,
.video-section .container,
.ui-quote {
    text-align: left;
}

.qualitative-preview-section p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-top: 2rem;
}

.personas-section {
    background-color: var(--light-gray-bg);
    padding-top: 60px;
}

.persona-slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    padding: 2rem;
    min-height: 300px;
}

.persona-info {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.persona-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.persona-name {
    font-family: 'Touche', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.persona-details {
    font-family: 'Gilroy', sans-serif;
    color: var(--text-color-light);
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

.persona-quotes {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: stretch;
    justify-content: flex-start;
}

.persona-quotes blockquote {
    flex-basis: 200px;
    flex-grow: 1;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 1.5rem;
    border-radius: 12px;
    font-family: 'Gilroy', sans-serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prioritization-grid-section {
    padding: 4rem;
    background-color: var(--light-gray-bg);
}

.journey-swiper {
    position: relative;
}

.journey-swiper .swiper-slide {
    width: auto;
}

.journey-swiper .swiper-slide img {
    max-width: none;
}

.ui-design-section {
    background-color: var(--background-color);
    color: var(--primary-color);
    padding-top: 60px;
}

.ui-design-section h2 {
    color: var(--primary-color);
}

.ui-design-section p {
    color: var(--text-color-light);
    max-width: 900px;
    margin-bottom: 3rem;
}

.ui-layout-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.ui-details-column {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ui-quote h4 {
    font-family: 'Touche', sans-serif;
    font-size: 1.5rem;
    color: var(--text-color-light);
    margin-bottom: 0.5rem;
}

.ui-quote p {
    font-size: 1.2rem;
    color: var(--primary-color);
    line-height: 1.5;
}

.ui-quote p strong {
    color: var(--accent-color);
}

.keyword-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
    font-family: 'Gilroy', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color-light);
}

.ui-hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.lb-image {
    max-width: 95vw !important;
    max-height: 95vh !important;
    border-radius: 8px;
}

.lightbox .lb-image {
    width: auto !important;
    height: auto !important;
}

.lb-outerContainer {
    width: auto !important;
    height: auto !important;
}

.video-section h2 {
    width: 100%;
}

.carousel-section .swiper {
    padding-bottom: 50px;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slide-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: var(--light-gray-bg);
    border-radius: 12px;
    padding: 40px 60px;
    width: 100%;
    align-items: center;
    min-height: 420px;
}

.slide-content .text-content {
    flex: 1;
    min-width: 300px;
}

.slide-content .text-content h3 {
    font-family: 'Touche', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: left;
}

.slide-content .chart-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    min-width: 300px;
}

.slide-content .chart-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chart-light {
    display: block;
}

.chart-dark {
    display: none;
}


.carousel-wrapper .swiper-button-next,
.carousel-wrapper .swiper-button-prev {
    position: static;
    transform: none;
    margin: 0;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.carousel-wrapper .swiper-button-next::after,
.carousel-wrapper .swiper-button-prev::after {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-color);
}

.gallery-section {
    padding-bottom: 80px;
}

.gallery-section p {
    max-width: 1024px;
    margin: 0 auto 2.5rem auto;
}

.gallery-swiper {
    width: 100%;
    padding-bottom: 50px;
    position: relative;
}

.gallery-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 12px;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease;
    z-index: 10;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background-color: white;
}

.gallery-swiper .swiper-button-prev {
    left: 20px;
}

.gallery-swiper .swiper-button-next {
    right: 20px;
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.prioritization-grid-section p {
    margin-bottom: 2.5rem;
}

.grid-image-wrapper {
    text-align: center;
}

.grid-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.figma-section {
    padding: 4rem;
}

.figma-embed-container {
    display: flex;
    justify-content: center;
    padding: 24px 16px;
    width: 100%;
}

.figma-embed-container iframe {
    width: 100%;
    max-width: 960px;
    aspect-ratio: 960 / 760;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.wireframes-section {
    padding: 5rem 0;
}

.wireframes-section p {
    margin-bottom: 2.5rem;
}


.wireframes-section-high {
    padding: 5rem 0;
}

.wireframes-section-high p {
    margin-bottom: 2.5rem;
}

.wireframe-gallery {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wireframe-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--background-color);
}

.wireframe-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.wireframe-item img {
    display: block;
    width: 100%;
    height: auto;
}

.grid-system-section {
    padding-top: 4rem;
    background-color: var(--light-gray-bg);
}

.grid-system-section p {
    max-width: 1200px;
    margin-right: auto;
    margin-bottom: 3rem;
}

.style-guide-section {
    background-color: var(--light-gray-bg);
    padding: 40px 0;
}

.moodboard-column {
    max-width: 900px;
    margin: 4rem auto 0 auto;
}

.moodboard-image {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.moodboard-light {
    display: block;
}

.moodboard-dark {
    display: none;
}

.style-guide-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.guide-item {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.guide-item h3 {
    font-family: 'Touche', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.typography-guide .font-family-name {
    font-family: 'Gilroy', sans-serif;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.type-scale p {
    font-family: 'Gilroy', sans-serif;
    font-weight: bold;
    color: rgb(0, 0, 0);
    margin-bottom: 0.8rem !important;
    line-height: 1.2;
}

.type-scale {
    display: grid;
    gap: 1.6rem;
}

.type-scale .h1-style {
    font-size: 40px;
}

.type-scale .h2-style {
    font-size: 32px;
}

.type-scale .h3-style {
    font-size: 28px;
}

.color-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.color-swatch {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
}

.color-swatch span {
    width: 3rem;
    height: 3rem;
    border-radius: 4px;
    border: 0px solid var(--border-color);
}

.color-swatch code {
    font-family: 'Gilroy';
    font-size: 1.2rem;
    font-weight: 700;
}

.color-swatch::after {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.color-swatch.copied::after {
    opacity: 1;
}

.button-showcase {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.sg-btn {
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 0.95rem;
    line-height: 1;
    cursor: pointer;
    color: #fff;
    font-family: 'Gilroy', sans-serif;
    font-weight: bold;
    transition: transform 0.2s ease, filter 0.2s ease;
    white-space: nowrap;
    width: 240px;
}

.button-showcase .sg-btn {
    min-width: auto;
}

.sg-btn.btn-green {
    background-color: #09AD70;
}

.sg-btn.btn-purple {
    background-color: #742794;
}

.sg-btn.btn-orange {
    background-color: #FF650E;
}

.sg-btn.btn-green:hover {
    background-color: #057D51;
}

.sg-btn.btn-purple:hover {
    background-color: #4B1761;
}

.sg-btn.btn-orange:hover {
    background-color: #C14B08;
}

.icon-showcase {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 2.5rem;
    column-gap: 1.5rem;
    justify-content: space-between;
}


.icon-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.2s ease-in-out;
}

.icon-wrapper {
    position: relative;
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.icon-wrapper:hover {
    transform: scale(1.15);
}

.icon-light {
    opacity: 1;

}

.icon-dark {
    opacity: 0;
}

.video-section {
    padding: 4rem;
    background-color: var(--light-gray-bg);
}

.video-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.dark-mode-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--background-color);
    border: 2px solid var(--background-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.dark-mode-button:hover {
    transform: scale(1.1);
}

.dark-mode-button svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
}

.dark-mode-button .icon-sun {
    display: none;
}

.dark-mode-button .icon-moon {
    display: block;
}


body.dark-mode {
    --primary-color: #f1f1f1;
    --seconday-color: #000;
    --background-color: #121212;
    --text-color-light: #a0a0a0;
    --border-color: #444;
    --light-gray-bg: #1E1E1E;
}

body.dark-mode .main-header {
    background-color: #1E1E1E;
}

body.dark-mode strong {
    color: #fff;
}

body.dark-mode p {
    color: var(--secondary-color);
}

body.dark-mode .problem-section p {
    color: #f8f8f8;
}

body.dark-mode .problem-section {
    background-color: #000;
}

body.dark-mode .research-box,
body.dark-mode .research-item blockquote,
body.dark-mode .slide-content,
body.dark-mode .tools-grid,
body.dark-mode .personas-section {
    background-color: #000;
}

body.dark-mode .persona-quotes blockquote {
    background-color: var(--light-gray-bg);
    color: var(--primary-color);
}

body.dark-mode .chart-light {
    display: none;
}

body.dark-mode .chart-dark {
    display: block;
}

body.dark-mode .gallery-swiper .swiper-slide img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

body.dark-mode .ui-design-section {
    background-color: #121212;
    color: #f1f1f1;
}

body.dark-mode .ui-design-section h2 {
    color: #fff;
}

body.dark-mode .ui-design-section p {
    color: #a0a0a0;
}

body.dark-mode .ui-quote h4 {
    color: #a0a0a0;
}

body.dark-mode .ui-quote p {
    color: #f1f1f1;
}

body.dark-mode .keyword-list {
    color: #a0a0a0;
}

body.dark-mode .grid-image-wrapper img {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .grid-system-section {
    padding-top: 4rem;
    background-color: #000000;
}




body.dark-mode .wireframe-item {
    border-color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    background-color: var(--light-gray-bg);
}

body.dark-mode .wireframe-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

body.dark-mode .style-guide-section {
    background-color: #000;
}

body.dark-mode .moodboard-light {
    display: none;
}

body.dark-mode .moodboard-dark {
    display: block;
}

body.dark-mode .guide-item {
    background-color: var(--light-gray-bg);
}


body.dark-mode .prioritization-grid-section {
    background-color: #000
}


body.dark-mode .wireframes-section {
    background-color: var(--background-color);
}

body.dark-mode .type-scale p {
    color: var(--primary-color) !important;
}

body.dark-mode .icon-light {
    opacity: 0;
}

body.dark-mode .icon-dark {
    opacity: 1;
}

body.dark-mode .dark-mode-button .icon-moon {
    display: none;
}

body.dark-mode .dark-mode-button .icon-sun {
    display: block;
}

body.dark-mode .dark-mode-button {
    background-color: var(--primary-color);
    color: var(--background-color);
    border: 2px solid var(--background-color);
}

body.dark-mode .video-section {
    background-color: #000;
}



@media (max-width: 1024px) {
    section {
        padding: 40px 0;
    }

    .banner-section {
        background-image: url('images/yuca/yuca-banner-tablet.png');
        height: 70vh;
    }

    .two-column-layout,
    .desk-research-layout {
        flex-direction: column;
        gap: 40px;
    }

    h2 {
        font-size: 30px;
    }

    p {
        font-size: 17px;
    }

    .slide-content {
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 30px;
        gap: 25px;
        min-height: 380px;
    }

    .slide-content .text-content,
    .slide-content .chart-content {
        flex: 1 1 50%;
        min-width: 0;
    }

    .slide-content .text-content {
        text-align: left;
    }

    .slide-content p {
        font-size: 1rem;
        text-align: left;
    }

    .slide-content .text-content h3 {
        font-size: 1.5rem;
    }

    .slide-content .chart-content {
        height: 260px;
    }

    .persona-slide-content {
        flex-direction: column;
        gap: 2rem;
    }

    .persona-info {
        flex: none;
        width: auto;
    }

    .persona-quotes {
        flex-direction: row;
        align-items: stretch;
    }

    .persona-quotes blockquote {
        max-width: 90%;
    }

    .ui-layout-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 1023px) {

    .carousel-wrapper .swiper-button-prev,
    .carousel-wrapper .swiper-button-next,
    .personas-swiper .swiper-button-next,
    .personas-swiper .swiper-button-prev,
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        display: none;
    }
}


@media (max-width: 768px) {
    .banner-section {
        background-image: url('images/yuca/yuca-banner-mobile.png');
        height: 65vh;
    }

    .main-header {
        padding: 1.5rem 0;
    }

    section {
        padding: 30px 20px;
    }

    .container,
    .container-wide {
        padding: 0 20px;
    }

    h2 {
        font-size: 28px;
        text-align: center;
    }

    p {
        font-size: 16px;
    }

    .research-intro-section .two-column-flex {
        flex-direction: column;
        text-align: center;
    }

    .research-intro-section h2,
    .qualitative-preview-section h2,
    .qualitative-preview-section p,
    .personas-section h2,
    .gallery-section h2,
    .wireframes-section h2,
    .grid-system-section h2,
    .video-section h2,
    .figma-section h2 {
        text-align: left;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px;
    }

    .desk-research-layout {
        grid-template-columns: 1fr;
    }

    .persona-slide-content {
        gap: 1.5rem;
        min-height: auto;
    }

    .persona-quotes {
        flex-direction: column;
    }

    .persona-quotes blockquote {
        max-width: 100%;
        min-height: auto;
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }

    .slide-content p {
        text-align: center;
    }

    .slide-content .text-content h3 {
        font-size: 1.6rem;
    }

    .slide-content .chart-content {
        max-height: 220px;
    }

    .prioritization-grid-section p {
        margin-bottom: 2rem;
    }
}


@media (min-width: 768px) {

    .journey-swiper .swiper-button-next,
    .journey-swiper .swiper-button-prev {
        width: 44px;
        height: 44px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .journey-swiper .swiper-button-next::after,
    .journey-swiper .swiper-button-prev::after {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
    }

    .journey-swiper .swiper-button-next:hover,
    .journey-swiper .swiper-button-prev:hover {
        background-color: #ffffff;
        transform: scale(1.1);
    }

    .journey-swiper {
        padding: 0 40px;
    }

    .style-guide-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .guide-item-wide {
        grid-column: span 2;
    }

    .wireframe-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .type-scale .h1-style {
        font-size: 50px;
    }

    .type-scale .h2-style {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .journey-swiper .swiper-button-prev {
        left: -22px;
    }

    .journey-swiper .swiper-button-next {
        right: -22px;
    }

    .style-guide-grid {
        grid-template-columns: 2fr 1fr;
        grid-template-areas:
            "typography colors"
            "buttons buttons"
            "icons icons";
    }

    .typography-guide {
        grid-area: typography;
    }

    .colors-guide {
        grid-area: colors;
    }

    .buttons-guide {
        grid-area: buttons;
    }

    .icons-guide {
        grid-area: icons;
    }

    .wireframe-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .type-scale .h1-style {
        font-size: 60px;
    }

    .type-scale .h2-style {
        font-size: 48px;
    }

    .type-scale .h3-style {
        font-size: 36px;
    }
}