.featured-space{
    background:red !important;
}

/* ====================================
   FEATURED SPACE
==================================== */

.featured-space{

    max-width:1400px;

    margin:20px auto 30px auto;

    padding:0 20px;
}

/* ====================================
   CONTAINER
==================================== */

.featured-container{

    width:100%;

    min-height:300px;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:12px;

    overflow:hidden;

    position:relative;

    box-shadow:
        0 2px 10px rgba(0,0,0,.05);
}

/* Garis identitas media */

.featured-container::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#dc2626;
}

/* ====================================
   PLACEHOLDER
==================================== */

.featured-placeholder{

    min-height:300px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:
        linear-gradient(
            135deg,
            #f8fafc,
            #eef2f7
        );
}

.featured-placeholder h2{

    font-size:32px;

    font-weight:700;

    color:#111827;

    margin-bottom:12px;
}

.featured-placeholder p{

    max-width:600px;

    font-size:15px;

    line-height:1.7;

    color:#6b7280;
}

/* ====================================
   MOBILE
==================================== */

@media (max-width:768px){

    .featured-space{
        padding:0 15px;
    }

    .featured-container,
    .featured-placeholder{
        min-height:220px;
    }

    .featured-placeholder h2{
        font-size:24px;
    }
}