.article-section {
    width: 100%;
    max-width: 1390px;
    min-height: 80vh; /* Ensures it takes up most of the screen height */
    display: flex;
    flex-direction: column;
    margin: 0 auto; /* Centers the section horizontally */
    font-family: var(--font-bagoss);
}
.article-container{
    width: 100%;
    max-width: 944.6px;
    min-height: 114.8vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}


.article-title {
    color: var(--text-text-default, #1f2733);
    font-family: var(--font-bagoss-regular);

    font-size: 24px;
    font-style: normal;
    font-weight: 1000;
    margin-top: 20px;
    line-height: 52px; /* 118.181% */
    
}

.article-description {
    color: var(--text-text-default, #1f2733);
    font-family: var(--font-bagoss-medium);
    font-size: 43.0px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 12px;
}

.article-button {
    background: #1D53BF;
    color: #ffffff;
    padding: 7px 20px;
    margin-top: 13px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: fit-content;
}

.article-button:hover {
    background: #1543a1;
    transform: translateY(-3px);
}

.article-button a {
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 1024px) {

    .article-section {
        width: 100%;
        min-height: 65vh; /* Ensures it takes up most of the screen height */
        display: flex;
        }

    .article-container{
        
        min-height: 90vh;
        
    }
    
    .article-section {
        max-width: 720px;
        padding: 36px 0;
    }

     

    .article-title {
        font-size: 36px;
        line-height: 44px;

    }

    .article-description {
        font-size: 18px;
        line-height: 26px;

    }
}

@media (max-width: 520px) {

    .article-container{
        min-height: 90vh; /* Ensures it takes up most of the screen height */
    }
    .article-section {
        max-width: 90%;
        padding: 2px 0;
        min-height: 45vh; 
    }

    .article-title {
        font-family: var(--font-bagoss-regular);
        font-size: 21px;
        font-weight: 1000;
        line-height: 40px;
    }

    .article-description {
        font-size: 26px;
        font-weight: 800;
        font-family: var(--font-bagoss-regular);
        line-height: 32px;
        margin-bottom: 12px;
    }
    
}
