/* =========================================
   Village 210 GB Lakhan - Magazine Theme
   Layout: Asymmetric Grid & Salmon Accents
   ========================================= */

.village-seo-layout-210.lakhan-variant {
    font-family: 'Noto Nastaliq Urdu', 'Arial', sans-serif;
    background-color: #fbfbfb; /* White-ish BG */
    color: #37474f; /* Dark Grey Text */
    direction: rtl;
    text-align: right;
    padding: 20px;
}

/* Magazine Header */
.mag-header-210 {
    background-color: #ffffff;
    padding: 30px;
    border-bottom: 5px solid #ff7043; /* Salmon Border */
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mag-brand {
    border-right: 5px solid #006064; /* Teal Accent */
    padding-right: 20px;
}

.mag-uc {
    display: block;
    color: #ff7043; /* Salmon */
    font-weight: bold;
    font-size: 1.1em;
    letter-spacing: 1px;
}

.seo-title {
    font-size: 2.8em;
    margin: 5px 0 0 0;
    font-weight: 800;
    color: #263238;
}

.mag-tagline {
    font-size: 1.2em;
    color: #78909c;
    font-style: italic;
}

/* Layout */
.seo-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.seo-main-content {
    flex: 2;
    min-width: 300px;
}

.seo-sidebar {
    flex: 1;
    min-width: 280px;
}

/* Content Blocks (Grid Style) */
.grid-block {
    background: white;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.block-title {
    color: #006064; /* Teal Heading */
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-box {
    background: #e0f7fa; /* Light Teal */
    color: #006064;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 0.8em;
}

.grid-block p {
    line-height: 1.9;
    font-size: 1.1em;
    color: #455a64;
}

/* Sidebar Widgets */
.mag-widget {
    background: #fff;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #eee;
    border-top: 3px solid #ff7043; /* Salmon Top */
}

.widget-head {
    font-size: 1.3em;
    color: #d84315; /* Darker Salmon */
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 8px;
}

/* Map Button */
.btn-salmon-map {
    display: block;
    background-color: #ff7043; /* Salmon */
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 2px; /* Sharp corners */
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    font-size: 1.1em;
}

.btn-salmon-map:hover {
    background-color: #d84315;
}

/* People Strip */
.people-strip-210 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.person-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fbe9e7; /* Very Light Salmon */
    padding: 10px 15px;
    border-left: 3px solid #ff7043;
    transition: transform 0.2s;
}

.person-strip:hover {
    transform: translateX(-5px);
    background: #ffccbc;
}

.strip-content {
    display: flex;
    flex-direction: column;
}

.strip-name {
    font-weight: bold;
    color: #3e2723;
    text-decoration: none;
    font-size: 1em;
}

.strip-role {
    font-size: 0.85em;
    color: #5d4037;
}

.strip-arrow {
    color: #ff7043;
    font-weight: bold;
}

/* News List */
.news-mag-210 {
    list-style: square;
    padding-right: 20px;
    margin: 0;
    color: #ff7043;
}

.news-mag-210 li {
    margin-bottom: 12px;
}

.news-mag-210 a {
    color: #37474f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.news-mag-210 a:hover {
    color: #ff7043;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .seo-container {
        flex-direction: column;
    }
    .mag-header-210 {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .mag-brand {
        border-right: none;
        border-bottom: 2px solid #006064;
        padding-right: 0;
        padding-bottom: 15px;
        width: 100%;
    }
}