/* middle-page.css - versi responsif penuh */

.layout-future {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1.2fr;
    gap: 7px;
    padding: 15px;
    background-color: #f2f2f2;
    margin-top: 25px;
}

.future-kolom {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.future-kolom h3 {
    font-size: 26px;
    letter-spacing: 5px;
    border-bottom: 2px solid #ccc;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 0 0 15px;
    color: #2a2a81;
}

.future-item1 img,
.highlight-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}

.future-item1 a img:hover {
    opacity: 0.85;
    transition: 0.3s;
}

.future-item h4 a,
.highlight-item h2 a {
    font-size: 22px;
    color: #2a2a81;
    font-weight: bold;
    text-decoration: none;
}

.future-item h4 a:hover,
.highlight-item h2 a:hover {
    color: #f77e05;
}

.future-item p,
.highlight-item p {
    font-size: 16px;
    color: #333;
    margin: 5px 0;
}

.press-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.press-item img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.press-item a img:hover {
    opacity: 0.85;
    transition: 0.3s;
}

.press-text {
    margin-left: 12px;
}

.press-item a {
    text-decoration: none;
    color: #4b0082;
    font-size: 16px;
    font-weight: bold;
}

.press-item a:hover {
    color: #007BFF;
}

.press-item small {
    font-size: 12px;
    color: #666;
}

.press-ad img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
    .layout-future {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .future-kolom h3 {
        font-size: 24px;
    }

    .future-item h4 a,
    .highlight-item h2 a {
        font-size: 20px;
    }

    .press-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .press-text {
        margin-left: 0;
        margin-top: 8px;
    }
}

@media (max-width: 320px) {
    .future-item p,
    .highlight-item p {
        font-size: 15px;
    }

    .press-item a {
        font-size: 14px;
    }

    .press-item img {
        width: 100%;
        height: auto;
    }
}


/* ========== RESPONSIF TAMBAHAN ========== */
@media (max-width: 320px) {
    .layout-future {
        font-size: clamp(10px, 2vw, 20px);
        letter-spacing: 1px;
    }
}