.big-title-wrapper{
    text-align: center;
}
.big-title h1{
    text-align: center;
    font-size: 3.5rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--ratio-color);
    font-family: "DM Serif Display",sans-serif;
}
.big-subtitle{
    font-size: 1.75rem;
    letter-spacing: -.01375rem;
    font-family: "DM Serif Display",sans-serif;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .big-title h1{
        font-size: 2rem;
    }
    .big-subtitle{
        font-size: 1.5rem;
    }
}
#category-buttons-container{
    overflow-x: auto;
}
.category-button{
    flex: 0 0 auto;
    font-size: 1.75rem;
    letter-spacing: -.01375rem;
    font-family: "DM Serif Display",sans-serif;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0.25rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, #F8FAFC 100%);
    border: 1px solid #E2E8F0;
    cursor: pointer;
    overflow-x: auto;
}
.category-button-check{
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1px solid #E2E8F0;   
}

.category-button.active {
    background-image: none;
    border: none;
}
#category-image, #category-title, #category-text{
    transition: all 0.3s ease;
}
.category-button.active .category-button-check{
    background-color: #56a7ff;
}
@media (max-width: 768px) {
    #category-buttons-container{
        min-width: 100%;
        margin: 0 auto;
        flex-wrap: nowrap; 
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        overflow-x: scroll;
        border-bottom: 1px solid #E2E8F0;
        border-top: 1px solid #E2E8F0;
    }
    .category-button{
        font-size: 1.25rem;
    }
    .category-button-check{
        width: 12px;
        height: 12px;
        border-radius: 3px;
    }
}


.vertical-divider{
    width: 2px;
    height: 60px;
    background-color: #CECECE;
}

#category-image{
    width: 300px;
    height: 300px;
}


.category-title{
    font-size: 2rem;
    letter-spacing: -.01375rem;
    font-family: "DM Serif Display",sans-serif;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: var(--ratio-color);
}

.category-text{
    width: 70%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .vertical-divider{
        height: 30px;
    }
    #category-image{
        width: 200px;
        height: 200px;
    }
    .category-text{
        width: 100%;
    }
}
#anchor-link{
    font-family: "Mulish", sans-serif;
    color: #000000;
}
#anchor-link:hover{
    color: #000000;
}

#story-card{
    border: 1px solid #E2E8F0;   
    background: linear-gradient(270deg, rgba(239, 142, 0, 0.05) 0%, rgba(239, 142, 0, 0.25) 100%);
    border-radius: 20px;
    padding: 2rem;
}
.story-card-title{
    font-size: 2rem;
    line-height: 1;
}
.border-left-gray{
    border-left: 2px solid #CECECE;
}
.check-text{
    font-size: 1.25rem;
    line-height: 1;
}

@media (max-width: 768px) {
    #story-card-container{
        padding: 0;
    }
    #story-card{
        border-radius: 0;
        padding: 2rem 1.5rem;
    }
    .story-card-title{
        font-size: 1.6rem;
    }
    .border-left-gray{
        border-left: none;
    }
    .check-text{
        font-size: 1rem;
    }
}
