/* Unique CSS for Village 480 GB - Mobile First & Speed Optimized */

.v480_wrapper {
    background-color: #f4f7f6;
    direction: rtl;
    text-align: right;
    line-height: 1.6;
}

/* Slim Header for First Fold Optimization */
.v480_header {
    background: #008080; /* Deep Teal */
    color: #ffffff;
    padding: 8px 15px;
    border-bottom: 3px solid #d4af37; /* Gold Accent */
}

.v480_flex_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v480_h1 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: bold;
    color: #ffffff;
}

.v480_tag {
    background: #d4af37;
    color: #004d4d;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* Main Container */
.v480_body {
    padding: 10px;
    max-width: 600px;
    margin: 0 auto;
}

/* Map Button Styling */
.v480_map_btn {
    display: block;
    background: #ffffff;
    color: #008080 !important;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    border: 1px solid #008080;
    margin-bottom: 12px;
    box-shadow: 0 4px 0 #d4af37;
}

/* Card Styling */
.v480_card {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.v480_alt_bg {
    background: #fdfaf0;
    border-right: 5px solid #008080;
}

.v480_h2 {
    font-size: 0.9rem;
    color: #008080;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    font-weight: bold;
}

.v480_text p {
    font-size: 0.88rem;
    color: #444;
    margin-bottom: 10px;
}

/* News List Styling */
.v480_news_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v480_news_item {
    font-size: 0.85rem;
    color: #333;
    padding: 8px;
    background: #e6f2f2;
    border-radius: 5px;
    border-right: 3px solid #008080;
}

/* People Section */
.v480_people {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.v480_person {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
}

.v480_icon {
    width: 35px;
    height: 35px;
    background: #008080;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    margin-left: 12px;
}

.v480_p_info strong {
    display: block;
    font-size: 0.85rem;
}

.v480_p_info small {
    font-size: 0.75rem;
    color: #777;
}

/* Responsive Handling */
@media (min-width: 768px) {
    .v480_people { flex-direction: row; }
    .v480_person { flex: 1; }
}