@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Rubik:wght@400;500;700;800&display=swap');

body {
    font-family: 'Rubik', "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
    background-color: #f7fafc;
    color: #2d3748;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: #1a365d;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.demo-banner {
    background-color: #2b6cb0;
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1000;
}

.demo-banner a {
    color: #fbd38d;
    text-decoration: underline;
}

.demo-controls {
    background-color: #1a202c;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    border-bottom: 2px solid #f7be27;
}

.demo-controls-label {
    font-size: 13px;
    color: #a0aec0;
}

.demo-btn {
    background-color: #f7be27;
    color: #0d233a;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 12px;
    margin-left: 8px;
    transition: background-color 0.2s;
}

.demo-btn:hover {
    background-color: #ecc94b;
}

.demo-btn.primar {
    background-color: #3182ce;
    color: #ffffff;
}

.demo-btn.primar:hover {
    background-color: #4299e1;
}

.main-header {
    background-color: #ffffff;
    color: #0d233a;
    padding: 15px 20px;
    border-bottom: 1px solid #edf2f7;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.title-section {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
}

.logo-comuna {
    font-size: 13px;
    font-weight: 800;
    color: #0d233a;
    letter-spacing: 1px;
}

.logo-comarna {
    font-size: 24px;
    font-weight: 800;
    color: #f7be27;
    letter-spacing: 0.5px;
}

.logo-judet {
    font-size: 10px;
    font-weight: 700;
    color: #0d233a;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: #0d233a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #f7be27;
    text-decoration: none;
}

.main-nav a.active {
    color: #f7be27;
    font-weight: 700;
}

.nav-login-btn, .nav-logout-btn {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px !important;
    text-transform: uppercase;
    font-weight: 700 !important;
}

.nav-login-btn {
    background-color: #f7be27;
    color: #0d233a !important;
}

.nav-login-btn:hover {
    background-color: #ecc94b;
}

.nav-logout-btn {
    background-color: #c53030;
    color: #ffffff !important;
}

.nav-logout-btn:hover {
    background-color: #9b2c2c;
}

.hero-section {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-container h2 {
    font-size: 32px;
    margin: 0 0 15px 0;
}

.hero-container p {
    font-size: 18px;
    color: #e2e8f0;
    margin: 0 0 30px 0;
}

.btn-primary {
    background-color: #d69e2e;
    color: #1a202c;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #ecc94b;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 25px;
    border-top: 3px solid #1a365d;
    margin-bottom: 25px;
}

.card h3 {
    margin-top: 0;
    color: #1a365d;
    font-size: 18px;
}

.card p {
    color: #4a5568;
    font-size: 14px;
}

.footer {
    background-color: #0a1c30;
    color: #a0aec0;
    padding: 35px 20px;
    font-size: 13px;
    border-top: 3px solid #f7be27;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-contact-info {
    color: #e2e8f0;
    font-size: 14px;
}

.footer-links-copyright {
    font-size: 12px;
    color: #a0aec0;
}

.footer-links-copyright a {
    color: #a0aec0;
    transition: color 0.2s;
    margin: 0 5px;
}

.footer-links-copyright a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.footer-social-icons a {
    color: #a0aec0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social-icons a:hover {
    color: #f7be27;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.login-box {
    max-width: 450px;
    margin: 80px auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #d69e2e;
}

.login-box h2 {
    margin-top: 0;
    text-align: center;
    color: #1a365d;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.form-control:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.btn-block {
    width: 100%;
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger {
    background-color: #fff5f5;
    border: 1px solid #fed7d7;
    color: #c53030;
}

.alert-success {
    background-color: #f0fff4;
    border: 1px solid #c6f6d5;
    color: #2f855a;
}

.panel-container {
    display: flex;
    gap: 30px;
}

.panel-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.panel-content {
    flex-grow: 1;
}

.sidebar-menu {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 15px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1a365d;
}

.sidebar-menu a {
    display: block;
    padding: 10px 20px;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-menu a:hover {
    background-color: #ebf8ff;
    color: #2b6cb0;
    text-decoration: none;
}

.sidebar-menu a.active {
    background-color: #ebf8ff;
    color: #2b6cb0;
    font-weight: bold;
    border-right: 4px solid #2b6cb0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.data-table th, .data-table td {
    padding: 14px 20px;
    text-align: left;
}

.data-table th {
    background-color: #1a365d;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.data-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.data-table tr:last-child {
    border-bottom: none;
}

.data-table tr:hover {
    background-color: #f7fafc;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
}

.badge-depusa {
    background-color: #edf2f7;
    color: #4a5568;
}

.badge-triata_ai {
    background-color: #eebffd;
    color: #6b46c1;
}

.badge-triata {
    background-color: #eebffd;
    color: #6b46c1;
}

.badge-in_lucru {
    background-color: #feebc8;
    color: #c05621;
}

.badge-lucru {
    background-color: #feebc8;
    color: #c05621;
}

.badge-rezolvata {
    background-color: #c6f6d5;
    color: #2f855a;
}

.badge-in-analiza {
    background-color: #feebc8;
    color: #c05621;
}

.badge-in_analiza {
    background-color: #feebc8;
    color: #c05621;
}

.badge-aprobata {
    background-color: #c6f6d5;
    color: #2f855a;
}

.badge-respinsa {
    background-color: #fed7d7;
    color: #9b2c2c;
}

.badge-platit {
    background-color: #c6f6d5;
    color: #2f855a;
}

.badge-neplatit {
    background-color: #fed7d7;
    color: #9b2c2c;
}

.ai-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 5px;
    display: inline-block;
}

.ai-log-box {
    background-color: #f0f4f8;
    border-left: 4px solid #667eea;
    padding: 15px;
    font-family: "Consolas", "Courier New", monospace;
    font-size: 12px;
    color: #2d3748;
    border-radius: 4px;
    margin: 15px 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #d69e2e;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-bottom: 4px solid #1a365d;
}

.stat-card-number {
    font-size: 28px;
    font-weight: bold;
    color: #1a365d;
    margin: 10px 0 0 0;
}

.stat-card-label {
    font-size: 12px;
    color: #718096;
    text-transform: uppercase;
    font-weight: 600;
}

.form-info {
    font-size: 12px;
    color: #718096;
    margin-top: 5px;
}

/* Properties Layout */
.prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.prop-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 20px;
    border-left: 4px solid #d69e2e;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.prop-card h4 {
    margin: 0 0 10px 0;
    color: #1a365d;
    font-size: 16px;
}

.prop-card p {
    margin: 5px 0;
    font-size: 13px;
    color: #4a5568;
}

/* Ghiseul.ro Theme */
.ghiseul-header {
    background: linear-gradient(135deg, #0d3875 0%, #1e5ba9 100%);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 6px 6px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #e53e3e;
}

.ghiseul-logo {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.ghiseul-logo span {
    color: #e53e3e;
}

.ghiseul-body {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Project Cards */
.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.project-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.project-card h4 {
    margin: 0 0 8px 0;
    color: #1a365d;
    font-size: 16px;
}

.project-card p {
    margin: 5px 0 15px 0;
    font-size: 13px;
    color: #4a5568;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #718096;
    border-top: 1px solid #edf2f7;
    padding-top: 10px;
}

/* Map and Geography */
.map-placeholder-container {
    background-color: #edf2f7;
    border: 2px dashed #cbd5e0;
    border-radius: 6px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #4a5568;
    margin: 20px 0;
    text-align: center;
    padding: 20px;
}

.svg-map-mock {
    margin-bottom: 15px;
}

.official-frame {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.official-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 15px;
    flex: 1;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.official-avatar-placeholder {
    width: 60px;
    height: 60px;
    background-color: #e2e8f0;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #4a5568;
    border: 2px solid #1a365d;
    flex-shrink: 0;
}

.official-info h4 {
    margin: 0;
    color: #1a365d;
    font-size: 15px;
}

.official-info p {
    margin: 3px 0 0 0;
    font-size: 12px;
    color: #718096;
}

@media (max-width: 768px) {
    .panel-container {
        flex-direction: column;
    }
    
    .panel-sidebar {
        width: 100%;
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .official-frame {
        flex-direction: column;
    }
}

/* Stiluri Modernizate Frontend Comarna conform screen.png */

.pnrr-banner {
    background: linear-gradient(90deg, #0d233a 0%, #1a365d 50%, #0d233a 100%);
    color: #ffffff;
    padding: 10px 20px;
    font-size: 13px;
    border-bottom: 2px solid #f7be27;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-family: "Montserrat", sans-serif;
    z-index: 1100;
    position: relative;
}

.pnrr-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.pnrr-flag {
    background-color: #003399;
    color: #ffcc00;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.pnrr-eval-login {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-pill-container {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 4px 6px 4px 15px;
    align-items: center;
    width: 260px;
    transition: all 0.3s ease;
}

.search-pill-container:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: #f7be27;
    box-shadow: 0 0 10px rgba(247, 190, 39, 0.2);
}

.search-pill-input {
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 13px;
    width: 100%;
}

.search-pill-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-pill-btn {
    background: #f7be27;
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0d233a;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-pill-btn:hover {
    background-color: #ecc94b;
}

.hero-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 30px auto 0 auto;
    background-image: linear-gradient(rgba(13, 35, 58, 0.55), rgba(13, 35, 58, 0.55)), url('https://primariacomarna.ro/wp-content/uploads/2022/10/slider-comarna-acasa.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 130px 20px 170px 20px;
    text-align: center;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(13, 35, 58, 0.12);
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.hero-title .title-gold {
    color: #f7be27;
}

.hero-subtitle {
    font-family: 'Rubik', sans-serif;
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 35px 0;
    color: #ffffff;
    opacity: 0.95;
}

/* Pulsating Ripple Button */
.ripple-button-container {
    position: relative;
    display: inline-block;
    z-index: 5;
}

.btn-urgent-announcements {
    background-color: #f7be27;
    color: #0d233a;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 15px rgba(247, 190, 39, 0.4);
    transition: all 0.3s ease;
    text-decoration: none !important;
    position: relative;
    z-index: 10;
}

.btn-urgent-announcements:hover {
    background-color: #ffffff;
    color: #0d233a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.ripple-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(247, 190, 39, 0.4);
    border-radius: 50%;
    pointer-events: none;
    animation: ripplePulse 3s infinite ease-out;
}

.ring-1 {
    width: 130%;
    height: 220%;
    border-radius: 40px;
    animation-delay: 0s;
}

.ring-2 {
    width: 160%;
    height: 300%;
    border-radius: 50px;
    animation-delay: 1s;
    border-color: rgba(247, 190, 39, 0.25);
}

.ring-3 {
    width: 190%;
    height: 380%;
    border-radius: 60px;
    animation-delay: 2s;
    border-color: rgba(247, 190, 39, 0.12);
}

@keyframes ripplePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0;
    }
}

/* Center Overlapping Search Bar */
.search-pill-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 10px 22px;
    align-items: center;
    width: 480px;
    max-width: 90%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.search-pill-icon {
    color: #718096;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-pill-input {
    background: none;
    border: none;
    outline: none;
    color: #2d3748;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
}

.search-pill-input::placeholder {
    color: #a0aec0;
}

/* Overlapping Grid */
.glass-grid-container {
    max-width: 1200px;
    margin: -70px auto 60px auto;
    padding: 0 20px;
    position: relative;
    z-index: 15;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.glass-tile {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 25px;
    color: #f7be27;
    box-shadow: 0 10px 30px rgba(13, 35, 58, 0.06);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    text-decoration: none !important;
}

.glass-tile:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(13, 35, 58, 0.12);
}

.glass-tile-icon {
    font-size: 32px;
    color: #0d233a;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-tile:hover .glass-tile-icon {
    transform: scale(1.08);
}

.glass-tile-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #f7be27;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Two-column layout */
.home-columns-container {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.mayor-column {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
    border: 1px solid #edf2f7;
    border-left: 6px solid #f7be27;
}

.mayor-circle-frame {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #f7be27;
    padding: 3px;
    flex-shrink: 0;
    position: relative;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(247, 190, 39, 0.2);
}

.mayor-circle-frame::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid #f7be27;
    border-radius: 50%;
    opacity: 0.5;
}

.mayor-circle-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.mayor-speech-block {
    flex-grow: 1;
}

.mayor-quote-text {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-style: italic;
    color: #4a5568;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.mayor-signature {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #0d233a;
    margin: 0;
}

.feed-column {
    flex: 1.5;
}

.feed-headers {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 8px;
}

.feed-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #a0aec0;
    margin: 0;
    cursor: pointer;
    position: relative;
    letter-spacing: 0.5px;
}

.feed-title.active {
    color: #0d233a;
}

.feed-title.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0d233a;
}

.feed-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feed-card {
    background-color: #0a1c30;
    color: #ffffff;
    border-radius: 30px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    text-decoration: none !important;
}

.feed-card:hover {
    background-color: #0d233a;
    transform: translateX(5px);
    box-shadow: 0 6px 12px rgba(13, 35, 58, 0.12);
}

.feed-card-left {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #cbd5e0;
    flex-grow: 1;
    overflow: hidden;
}

.feed-card-left strong {
    color: #ffffff;
}

.feed-card-icon {
    font-size: 16px;
    color: #f7be27;
    display: flex;
    align-items: center;
}

.feed-card-title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.feed-card-right {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    color: #a0aec0;
    flex-shrink: 0;
}

.feed-card-date {
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.feed-card-action {
    color: #f7be27;
    font-size: 15px;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .home-columns-container {
        flex-direction: column;
    }
    .mayor-column {
        width: 100%;
        box-sizing: border-box;
    }
    .feed-column {
        width: 100%;
    }
}
