.sub-cat-img 
{
    width:100% !important;
}
.story-detail {background:none !important;}
.okc-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* ===== SECTION BOX ===== */
.okc-box {
    background: #fff;
    border: 2px solid #ff7a00;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.15);
    transition: all 0.3s ease;
}

.okc-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 122, 0, 0.25);
}

/* ===== HEADINGS ===== */
.okc-title {
    font-size: 24px;
    font-weight: bold;
    color: #ff7a00;
    margin-bottom: 15px;
    border-left: 5px solid #ff7a00;
    padding-left: 10px;
}

/* ===== TEXT ===== */
.okc-text {
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ===== LIST ===== */
.okc-list {
    padding-left: 20px;
}

.okc-list li {
    margin-bottom: 10px;
}

/* ===== GRID ===== */
.okc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* ===== SMALL BOX ===== */
.okc-mini-box {
    border: 1px solid #ff7a00;
    border-radius: 10px;
    padding: 15px;
    background: #fffdfb;
    box-shadow: 0 5px 12px rgba(255, 122, 0, 0.1);
    transition: 0.3s;
}

.okc-mini-box:hover {
    background: #fff3e8;
    transform: scale(1.02);
}

/* ===== ANIMATION ===== */
.okc-fade {
    animation: okcFade 0.8s ease;
}

@keyframes okcFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .okc-grid {
        grid-template-columns: 1fr;
    }

    .okc-title {
        font-size: 20px;
    }
}