/**
 * Shortcode Block Styles - Bloque simple para insertar cualquier shortcode
 */

/* === CONTENEDOR PRINCIPAL === */
.rescop-shortcode-block {
    width: 100%;
    padding: 2rem;
    background: white;
}

/* === TÍTULO === */
.rescop-shortcode-title {
    text-align: center;
    color: black;
    font-size: 36px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    line-height: 72px;
    margin: 0 0 2rem 0;
    padding: 0;
}

/* === DESCRIPCIÓN === */
.rescop-shortcode-description {
    text-align: center;
    color: rgba(0, 0, 0, 0.80);
    font-size: 36px;
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 400;
    line-height: 50px;
    margin: 0 0 3rem 0;
    padding: 0;
}

/* === CONTENEDOR DEL SHORTCODE === */
.rescop-shortcode-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rescop-shortcode-wrapper {
    width: 100%;
}

/* === ALINEACIONES === */
.rescop-shortcode-block.align-left {
    text-align: left;
}

.rescop-shortcode-block.align-left .rescop-shortcode-title,
.rescop-shortcode-block.align-left .rescop-shortcode-description {
    text-align: left;
}

.rescop-shortcode-block.align-center {
    text-align: center;
}

.rescop-shortcode-block.align-center .rescop-shortcode-title,
.rescop-shortcode-block.align-center .rescop-shortcode-description {
    text-align: center;
}

.rescop-shortcode-block.align-right {
    text-align: right;
}

.rescop-shortcode-block.align-right .rescop-shortcode-title,
.rescop-shortcode-block.align-right .rescop-shortcode-description {
    text-align: right;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .rescop-shortcode-block {
        padding: 1rem;
    }
    
    .rescop-shortcode-title {
        font-size: 28px;
        line-height: 42px;
    }
    
    .rescop-shortcode-description {
        font-size: 18px;
        line-height: 28px;
    }
}