.content-subvenciones{
    display: flex;
    width: 100%;
    padding: var(--size-space-40, 40px) var(--360-575-page-margin, 16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--size-space-32, 32px);
}

.content-subvenciones .content-subvenciones-header{
    display: flex;
    padding: var(--size-space-0, 0px);
    flex-direction: column;
    align-items: center;
    gap: var(--size-space-16, 16px);
    align-self: stretch;
}

.content-subvenciones-header .content-subvenciones-title,
.content-subvenciones-header .content-subvenciones-text{
    align-self: stretch;
    color: var(--Color-Content-General-1, #2C2C2C);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    padding-bottom: 0;
    margin-bottom: 0;
}

.content-subvenciones .article-subvenciones{
    display: flex;
    padding-bottom: var(--size-space-24, 24px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--size-space-24, 24px);
    align-self: stretch;
}

.article-subvenciones .imagen img{
    display: flex;
    height: 312px;
    padding: var(--size-space-0, 0px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--size-space-0, 0px);
    align-self: stretch;
    border-radius: var(--border-radius-l, 16px);
    width: 100vw;
}

.content-subvenciones .article-subvenciones .article-body{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--size-space-24, 24px);
    align-self: stretch;
}

.article-subvenciones .article-content{
    display: flex;
    padding: var(--size-space-0, 0px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--size-space-16, 16px);
    align-self: stretch;
}

.article-subvenciones .article-content .body-title{
    display: flex;
    padding: var(--size-space-0, 0px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--size-space-12, 12px);
    align-self: stretch;
}

.article-subvenciones .article-content .body-title .article-body-title{
    color: var(--Color-Content-General-1, #2C2C2C);
    font-feature-settings: 'liga' off, 'clig' off;
    align-self: stretch;
    padding-bottom: 0;
    margin-bottom: 0;
}

.article-subvenciones .article-content .article-body-text{
    color: var(--Color-Content-General-1, #2C2C2C);
    font-feature-settings: 'liga' off, 'clig' off;
    flex: 1 0 0;
    margin-bottom: 0;
    align-self: stretch;
}

.article-subvenciones .article-button{
    display: flex;
    padding: var(--border-radius-none, 0px);
    flex-direction: column;
    align-items: center;
    gap: var(--size-space-0, 0px);
    align-self: stretch;
    align-content: center;
    width: 100%;
}

.article-subvenciones .article-button a{
    display: flex;
    height: 56px;
    min-width: 200px;
    max-width: 412px;
    padding: var(--border-radius-none, 0px) var(--size-space-40, 40px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--border-radius-none, 0px);
    border-radius: var(--border-radius-xl, 100px);
    background: var(--Color-Button-Background-Active-1, #2F6852);
    color:#FFFAF6;
    width: 100%;
    align-self: center;
    cursor: pointer;
}

.article-subvenciones .article-button a:hover{
    background: #2f6852ab;
    border: 1px solid #2f6852ab;
}


@media (min-width: 576px) {
    .content-subvenciones{
        padding: var(--size-space-40, 40px) var(--576-767-page-margin, 42px);
        gap: var(--size-space-16, 16px);
    }

}


@media (min-width: 768px) {
    .content-subvenciones{
        padding: var(--size-space-40, 40px) var(--768-991-page-margin, 48px);
        gap: var(--size-space-32, 32px);
    }
}

@media (min-width: 992px) {

    .content-subvenciones{
        padding: var(--size-space-40, 40px) var(--992-1199-page-margin, 82px);
    }

    .content-subvenciones .article-subvenciones{
        padding: var(--size-space-0, 0px);
        align-items: center;
        flex-direction: row;
    }

    .article-subvenciones .imagen{
        display: flex;
        padding-right: var(--size-space-8, 8px);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--size-space-0, 0px);
        flex: 1 0 0;
    }

    .article-subvenciones .imagen img{
        height: 250px;
        align-items: center;
        justify-content: flex-end;
        gap: var(--size-space-12, 12px);
    }

    .content-subvenciones .article-subvenciones .article-body{
        padding: var(--size-space-0, 0px);
        justify-content: center;
        flex: 1 0 0;
        min-width: calc((100vw - 188px)/2);
    }

    .article-subvenciones .article-content{
        gap: var(--size-space-24, 24px);
    }

    .article-subvenciones .article-button{
        align-items: flex-start;
        align-self: flex-start;
        width: auto;
    }

    .article-subvenciones .article-button a{
        display: flex;
        height: 56px;
        min-width: 200px;
        max-width: 412px;
        padding: var(--border-radius-none, 0px) var(--size-space-40, 40px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--border-radius-none, 0px);
        border-radius: var(--border-radius-xl, 100px);
        background: var(--Color-Button-Background-Active-1, #2F6852);
        color:#FFFAF6;
        width: 100%;
        align-self: center;
    }

}

@media (min-width: 1200px) {
    .content-subvenciones{
        padding: var(--size-space-40, 40px) var(--1200-1399-page-margin, 102px);
    }
    .content-subvenciones .article-subvenciones .article-body{
        min-width: calc((100vw - 228px)/2);
    }
}

@media (min-width: 1920px) {
    .content-subvenciones{
        padding: var(--size-space-40, 40px) var(--14001920-page-margin, 324px);
    }

    .content-subvenciones .article-subvenciones .article-body{
        min-width: 624px;
    }

    .article-subvenciones .imagen img{
        width: 624px;
    }
}