/**
 * Theme: Royal Purple & Silver Marble (Chak 177 GB Mari Atari)
 * Focus: Mobile-First, SEO-Heavy, Fast Loading, Non-Clickable UI
 */

.v177-purple-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 8px;
    direction: rtl;
    text-align: right;
    font-family: 'Jameel Noori Nastaleeq', Arial, sans-serif;
    background-color: #f7f5f9;
}

/* Header Section - Purple & Silver Trim */
.v177-header {
    background: #4b0082; /* Indigo/Purple */
    padding: 12px 10px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 4px solid #c0c0c0; /* Silver */
    margin-bottom: 10px;
}

.v177-main-title {
    color: #ffffff !important;
    font-size: 1.25rem !important; /* Compact size for mobile space */
    margin: 0 0 5px 0 !important;
    font-weight: bold;
}

.v177-uc-badge {
    background: #c0c0c0;
    color: #4b0082;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* 3D Tile System */
.v177-tile {
    background: #ffffff;
    border: 1px solid #d1d1d1;
    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 */
}

.v177-h2 {
    color: #4b0082;
    font-size: 1.1rem !important; /* Smaller headings to save vertical space */
    margin: 0 0 10px 0 !important;
    border-bottom: 1px dashed #c0c0c0;
    padding-bottom: 5px;
}

/* Rich Text for SEO: Red Writing */
.v177-text p {
    color: #d32f2f; /* Red writing for SEO text as per requirement */
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-align: justify;
}

/* Map Button Styling (Active) */
.v177-map-btn {
    display: block;
    background: #4b0082;
    color: #c0c0c0 !important;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px #260041;
    transition: 0.2s;
}

.v177-map-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px #260041;
}

.v177-hint { font-size: 0.85rem; color: #757575; margin-bottom: 10px; }

/* People Section (Static Items) */
.v177-person-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #eee;
    margin-bottom: 8px;
    border-right: 4px solid #4b0082; /* Purple accent */
}

.v177-p-details { display: flex; flex-direction: column; }
.v177-p-name { font-weight: bold; color: #4b0082; font-size: 0.95rem; }
.v177-p-role { font-size: 0.75rem; color: #757575; }

.v177-static-tag {
    background: #f1f1f1;
    color: #4b0082;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    cursor: default;
}

/* News Section */
.v177-news-ul { list-style: none; padding: 0; margin: 0; }
.v177-news-ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 0.9rem;
    color: #333;
}

/* Mobile-First Adjustments */
@media (max-width: 600px) {
    .v177-tile { padding: 12px; }
}