body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #1a1a1a;
}

/* Force full-width breakout for plugin content to escape theme container */
.zih-isolation-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: block !important;
}

.zih-isolation-wrapper main {
    display: block !important;
}

/* Wide magazine layout */
.jannah-container {
    max-width: 1400px;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
}

.header-top {
    background-color: #000;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-main {
    background: #fff;
    border-bottom: 3px solid #000;
}

.breaking-tag {
    background: #000;
    color: #fff;
    padding: 2px 10px;
    font-weight: 700;
    display: inline-block;
    margin-right: 15px;
    border-radius: 5px;
}

.post-card {
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eee;
    border-radius: 5px;
}

.post-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #ddd;
}

.cat-badge {
    background: #000;
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
}

.sidebar-title {
    border-bottom: 2px solid #000 !important;
    display: inline-block !important;
    padding-bottom: 5px;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.5px;
    width: auto !important;
    /* Ensure line only under text unless w-full is needed */
}

/* Force titles in content column to be inline (only text underline) */
.zi-content-column .sidebar-title {
    display: inline-block !important;
    width: auto !important;
    border-bottom: 2px solid #000 !important;
}

/* Sidebar titles in the actual sidebar (right) should be full width only if needed */
.lg\:col-span-1 .sidebar-title {
    width: 100% !important;
}

/* Read More Button Reset & Style */
.zi-read-more {
    display: inline-block;
    background: transparent !important;
    color: #000 !important;
    border: none !important;
    border-bottom: 2px solid #000 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    padding-bottom: 2px !important;
    /* Slight gap for underline */
    margin-top: 1rem;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    box-shadow: none !important;
    cursor: pointer;
    line-height: 1;
}

.zi-read-more:hover {
    background: transparent !important;
    color: #333 !important;
    border-color: #333 !important;
}

.post-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
}

.tag-chip {
    background: #fff;
    border: 1px solid #eee;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s;
    border-radius: 5px;
}

.tag-chip:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Hover Underline effect for blog titles */
.hover-underline:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

/* Sponsor Slot Placeholders (Renamed from ad-space to avoid blockers) */
.zi-sponsor-slot {
    background-color: #ececec;
    border: 1px dashed #ccc;
    color: #999;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}