/**
 * Theme: Coffee & Cream (Chak 171 GB Bamboah)
 * Focus: Mobile-First, SEO-Heavy, Layout Persistence
 */

.v171-coffee-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 8px;
    direction: rtl;
    text-align: right;
    font-family: 'Jameel Noori Nastaleeq', Arial, sans-serif;
    background-color: #fdfaf5;
}

/* Header Section - Coffee Brown & Cream Trim */
.v171-header {
    background: #4e342e; /* Deep Coffee Brown */
    padding: 12px 10px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 4px solid #d7ccc8; /* Cream/Silver */
    margin-bottom: 10px;
}

.v171-main-title {
    color: #ffffff !important;
    font-size: 1.25rem !important; /* Compact size for mobile space */
    margin: 0 0 5px 0 !important;
    font-weight: bold;
}

.v171-uc-badge {
    background: #d7ccc8;
    color: #4e342e;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* 3D Tile System */
.v171-tile {
    background: #ffffff;
    border: 1px solid #d7ccc8;
    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 Writing Brand Accent */
}

.v171-h2 {
    color: #4e342e;
    font-size: 1.1rem !important; /* Smaller headings to save vertical space */
    margin: 0 0 10px 0 !important;
    border-bottom: 1px dashed #d7ccc8;
    padding-bottom: 5px;
}

/* Rich Text for SEO: Red Writing */
.v171-text p {
    color: #d32f2f; /* Red writing for SEO text as per request */
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-align: justify;
}

/* Map Button Styling (Active Link) */
.v171-map-btn {
    display: block;
    background: #4e342e;
    color: #ffffff !important;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px #2b1d1a;
    transition: 0.2s;
}

.v171-map-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px #2b1d1a;
}

.v171-hint { font-size: 0.85rem; color: #795548; margin-bottom: 10px; }

/* People Section (Static Items) */
.v171-person-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #efebe9;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #d7ccc8;
    margin-bottom: 8px;
    border-right: 4px solid #4e342e; /* Coffee accent */
}

.v171-p-details { display: flex; flex-direction: column; }
.v171-p-name { font-weight: bold; color: #4e342e; font-size: 0.95rem; }
.v171-p-role { font-size: 0.75rem; color: #795548; }

.v171-static-tag {
    background: #4e342e;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    cursor: default;
}

/* News Section */
.v171-news-ul { list-style: none; padding: 0; margin: 0; }
.v171-news-ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 0.9rem;
    color: #333;
}

/* Gallery Style */
.v171-gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.v171-gallery-item img { width: 100%; border-radius: 6px; border: 1px solid #ddd; display: block; }

/* Footer Note */
.v171-footer {
    text-align: center;
    font-size: 0.7rem;
    color: #a1887f;
    margin-top: 15px;
    padding-bottom: 20px;
}

/* Mobile-First Adjustments */
@media (max-width: 600px) {
    .v171-tile { padding: 12px; }
}