/**
 * Theme: Midnight Navy & Gold (Chak 175 GB Mangirah)
 * Focus: Mobile-First, SEO-Heavy, Fast Loading, Static UI
 */

.v175-navy-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 8px;
    direction: rtl;
    text-align: right;
    font-family: 'Jameel Noori Nastaleeq', Arial, sans-serif;
    background-color: #f0f3f5;
}

/* Header Section - Navy & Gold Trim */
.v175-header {
    background: #1a237e; /* Midnight Navy */
    padding: 12px 10px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 4px solid #fbc02d; /* Gold Accent */
    margin-bottom: 10px;
}

.v175-main-title {
    color: #ffffff !important;
    font-size: 1.25rem !important; /* Compact size for mobile real estate */
    margin: 0 0 5px 0 !important;
    font-weight: bold;
}

.v175-uc-badge {
    background: #fbc02d;
    color: #1a237e;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* 3D Tile System */
.v175-tile {
    background: #ffffff;
    border: 1px solid #d1d9e6;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-top: 5px solid #d32f2f; /* Red Brand Accent Writing */
}

.v175-h2 {
    color: #1a237e;
    font-size: 1.1rem !important; /* Smaller headings to save vertical space */
    margin: 0 0 10px 0 !important;
    border-bottom: 1px dashed #fbc02d;
    padding-bottom: 5px;
}

/* SEO Content: Dark Text with Red Accents */
.v175-text p {
    color: #2c3e50; 
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-align: justify;
}

/* Map Button Styling (Active) */
.v175-map-btn {
    display: block;
    background: #1a237e;
    color: #fbc02d !important;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px #0d1240;
    transition: 0.2s;
}

.v175-map-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px #0d1240;
}

.v175-hint { font-size: 0.85rem; color: #78909c; margin-bottom: 10px; }

/* People Section (Static Info) */
.v175-person-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fdfdfd;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #eee;
    margin-bottom: 8px;
    border-right: 4px solid #1a237e; /* Navy accent */
}

.v175-p-details { display: flex; flex-direction: column; }
.v175-p-name { font-weight: bold; color: #1a237e; font-size: 0.95rem; }
.v175-p-role { font-size: 0.75rem; color: #546e7a; }

.v175-static-tag {
    background: #f1f1f1;
    color: #1a237e;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    cursor: default;
}

/* News Section */
.v175-news-ul { list-style: none; padding: 0; margin: 0; }
.v175-news-ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 0.9rem;
    color: #2c3e50;
}

/* Mobile-First Adjustments */
@media (max-width: 600px) {
    .v175-tile { padding: 12px; }
}