:root {
            --primary-color: #192324;
            --secondary-color: #c49a6c;
            --accent-color: #2d3748;
            --dark-color: #1e293b;
            --navy-color: #08191f;
            --success-color: #db6401;
            --white-color: #ffffff;
        }
        body {
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
        }
        .hero-overlay {
            background: linear-gradient(135deg, #030c0ff2 0%, rgba(26, 54, 93, 0.4) 100%);
        }
        
        .nav-shadow {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 0.5rem;
            z-index: 1000;
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        
        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 0;
            width: 100%;
            height: 10px;
            background: transparent;
        }
        
        .btn-primary {
            position: relative;
            display: inline-flex;
            align-items: center;
            background: var(--primary-color);
            color: var(--white-color);
            font-weight: 600;
            border: none;
            padding: 16px 32px;
            border-radius: 50px;
            transition: all 0.4s ease;
            overflow: hidden;
            z-index: 1;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-primary::after {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
            z-index: -1;
        }

        .btn-primary:hover::after {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white-color);
            border: 2px solid var(--white-color);
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .btn-secondary:hover {
            background: var(--white-color);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .btn-cta {
            background: var(--success-color);
            color: var(--white-color);
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            box-shadow: 0 4px 15px rgba(6, 95, 70, 0.3);
        }

        .btn-cta:hover {
            background: #047857;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(6, 95, 70, 0.4);
        }

        .service-card {
            position: relative;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
            transition: all 0.4s ease;
        }

        .service-card:hover::before {
            background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .service-card:hover img {
            transform: scale(1.1);
        }

        .testimonial-card {
            background: var(--dark-color);
            border-radius: 16px;
            padding: 32px;
            color: var(--white-color);
            position: relative;
            overflow: hidden;
        }

        .testimonial-banner {
            background: var(--navy-color);
            padding: 48px 32px;
            position: relative;
            overflow: hidden;
        }

        .testimonial-minimal {
            background: #2d3748;
            border-left: 4px solid var(--secondary-color);
            padding: 24px 32px;
            font-style: italic;
            color: var(--white-color);
        }

        .process-step {
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .area-card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 4px solid var(--secondary-color);
        }

        .area-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .popup-content {
            background: white;
            border-radius: 16px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }

        .lazy-load {
            opacity: 0;
            transition: opacity 0.3s;
        }

        .lazy-load.loaded {
            opacity: 1;
        }

        .section-padding {
            padding: 80px 0;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
        }
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-section-bg {
    background-image: url('https://dev.remobi.ro/wp-content/themes/picostrap5-child-base/images/section-bg-shape-2.svg');
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
}
#logo{
    height: 55px;
}
#nav{
    background-color: #06262bba;
    padding: 19px 30px;
    border-radius: 30px;
}

.kitchen-hero-bg {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(45, 90, 135, 0.8) 50%, rgba(26, 54, 93, 0.9) 100%);
}

.kitchen-materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.material-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.bedroom-hero-bg {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(45, 90, 135, 0.8) 50%, rgba(26, 54, 93, 0.9) 100%);
}

.bedroom-organization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.organization-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.organization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.bedroom-feature-highlight {
    background: linear-gradient(135deg, rgba(246, 173, 36, 0.1) 0%, rgba(246, 173, 36, 0.05) 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0.5rem;
}

.wardrobe-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.wardrobe-solution-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.wardrobe-solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.bedroom-testimonial-special {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(45, 90, 135, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.bedroom-testimonial-special::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(246,173,36,0.1)"/></svg>') repeat;
    transform: rotate(-15deg);
    pointer-events: none;
}

@media (max-width: 768px) {
    .bedroom-organization-grid {
        grid-template-columns: 1fr;
    }
    
    .wardrobe-solutions-grid {
        grid-template-columns: 1fr;
    }
}

.bedroom-pricing-highlight {
    background: linear-gradient(135deg, rgba(56, 161, 105, 0.1) 0%, rgba(56, 161, 105, 0.05) 100%);
    border: 2px solid rgba(56, 161, 105, 0.2);
    position: relative;
}

.bedroom-pricing-highlight::before {
    content: 'POPULARĂ';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.testimonial-integration {
    margin-top: -2rem;
    margin-bottom: -2rem;
}

.section-testimonial-spacing {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.living-hero-bg {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(45, 90, 135, 0.8) 50%, rgba(26, 54, 93, 0.9) 100%);
}

.living-storage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.storage-solution-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.storage-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.living-feature-highlight {
    background: linear-gradient(135deg, rgba(246, 173, 36, 0.1) 0%, rgba(246, 173, 36, 0.05) 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0.5rem;
}

.entertainment-center-showcase {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05) 0%, rgba(45, 90, 135, 0.03) 100%);
    border-radius: 1rem;
    padding: 2rem;
}

.living-organization-benefits {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.living-organization-benefits:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .living-storage-grid {
        grid-template-columns: 1fr;
    }
}
.bathroom-hero-bg {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(45, 90, 135, 0.8) 50%, rgba(26, 54, 93, 0.9) 100%);
}

.bathroom-moisture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.moisture-resistant-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.moisture-resistant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.bathroom-feature-highlight {
    background: linear-gradient(135deg, rgba(246, 173, 36, 0.1) 0%, rgba(246, 173, 36, 0.05) 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0.5rem;
}

.humidity-protection-showcase {
    background: linear-gradient(135deg, rgba(56, 161, 105, 0.05) 0%, rgba(56, 161, 105, 0.03) 100%);
    border-radius: 1rem;
    padding: 2rem;
}

.bathroom-storage-benefits {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.bathroom-storage-benefits:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.moisture-resistance-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(56, 161, 105, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .bathroom-moisture-grid {
        grid-template-columns: 1fr;
    }
}
/* Bathroom Portfolio Mosaic Styles */
.bathroom-portfolio-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 200px);
    gap: 8px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-tile {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.portfolio-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 10;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-tile:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.portfolio-tile:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.portfolio-tile:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.portfolio-description {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.4;
}

.portfolio-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bathroom-portfolio-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(8, 150px);
        gap: 6px;
    }

    .portfolio-tile.large {
        grid-area: auto !important;
    }
    
    .portfolio-tile.medium {
        grid-area: auto !important;
    }
    
    .portfolio-tile.small {
        grid-area: auto !important;
    }
    
    .portfolio-overlay {
        padding: 1rem;
    }
    
    .portfolio-title {
        font-size: 0.9rem;
    }
    
    .portfolio-description {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .bathroom-portfolio-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 200px);
    }
}
/* Commercial Hero Background */
.commercial-hero-bg {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(45, 90, 135, 0.8) 50%, rgba(26, 54, 93, 0.9) 100%);
}
/* Commercial Portfolio Mosaic Styles */
.commercial-portfolio-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 200px);
    gap: 8px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Portfolio tile styles already exist from previous pages, reusing those */

/* Commercial specific responsive adjustments */
@media (max-width: 768px) {
    .commercial-portfolio-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(8, 150px);
        gap: 6px;
    }

    .commercial-portfolio-mosaic .portfolio-tile {
        grid-area: auto !important;
    }
}

@media (max-width: 480px) {
    .commercial-portfolio-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 200px);
    }
}
/* Portfolio Hero Background */
.portfolio-hero-bg {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(45, 90, 135, 0.8) 50%, rgba(26, 54, 93, 0.9) 100%);
}

/* Portfolio Filter Buttons */
.portfolio-filter-btn {
    padding: 12px 24px;
    border-radius: 50px;
    background: white;
    color: var(--gray-600);
    border: 2px solid var(--gray-200);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Category Preview Cards */
.category-preview-card {
    transition: all 0.3s ease;
}

.category-preview-card:hover {
    transform: translateY(-4px);
}

/* Featured Project Cards */
.featured-project-card {
    background: white;
    border-radius: 1rem;
    padding: 0;
    transition: all 0.3s ease;
}

.featured-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
/* Kitchen Portfolio Mosaic */
.kitchen-portfolio-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 200px);
    gap: 8px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Portfolio Project Cards */
.portfolio-project-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.portfolio-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Portfolio Tags */
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tag {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Before/After Slider Styles */
.before-after-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.before-after-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: ew-resize;
}

.slider-container {
    position: relative;
    height: 300px;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}

.slider-line {
    width: 100%;
    height: 100%;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: var(--primary-color);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.8);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.15);
}

/* Portfolio Hero Background */
.portfolio-hero-bg {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(45, 90, 135, 0.8) 50%, rgba(26, 54, 93, 0.9) 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-container {
        height: 200px;
    }
    
    .slider-button {
        width: 30px;
        height: 30px;
    }
    
    .testimonial-card {
        margin-bottom: 1rem;
    }
}
   .team-card {
        position: relative;
        border-radius: 1rem; /* 16px */
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transition: all 0.4s ease;
    }
    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }
    .team-card-img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    .team-card:hover .team-card-img {
        transform: scale(1.05);
    }
    .team-card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem; /* 24px */
        color: white;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    }
     .category-filter {
        padding: 0.5rem 1.5rem; /* 8px 24px */
        border-radius: 9999px;
        font-weight: 600;
        background-color: #f3f4f6; /* bg-gray-100 */
        color: #4b5563; /* text-gray-600 */
        transition: all 0.2s ease;
    }
    .category-filter:hover {
        background-color: #e5e7eb; /* bg-gray-200 */
    }
    .category-filter.active {
        background-color: var(--primary-color);
        color: white;
    }

    .blog-card {
        background-color: white;
        border-radius: 1rem; /* 16px */
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .blog-card-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
     /* Styling for the article body content */
    .prose h2 {
        font-family: 'Playfair Display', serif;
        font-size: 1.875rem; /* text-3xl */
        font-weight: 700;
        margin-top: 2.5em;
        margin-bottom: 1em;
    }
    .prose h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem; /* text-2xl */
        font-weight: 700;
        margin-top: 2em;
        margin-bottom: 0.8em;
    }
    .prose p, .prose ul, .prose ol {
        font-size: 1.125rem; /* text-lg */
        line-height: 1.75;
        color: #374151; /* text-gray-700 */
        margin-bottom: 1.25em;
    }
    .prose a {
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s;
    }
    .prose a:hover {
        color: var(--secondary-color);
    }
    .prose blockquote {
        border-left: 4px solid var(--secondary-color);
        padding-left: 1.5rem;
        font-style: italic;
        font-weight: 500;
        color: #1f2937; /* text-gray-800 */
    }
    .prose ul {
        list-style: disc;
        padding-left: 1.5em;
    }
    .prose ol {
        list-style: decimal;
        padding-left: 1.5em;
    }

    /* Share Buttons */
    .share-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 3rem; /* 48px */
        height: 3rem; /* 48px */
        border-radius: 9999px;
        color: white;
        transition: transform 0.2s ease;
    }
    .share-button:hover {
        transform: scale(1.1);
    }
    .share-button.facebook { background-color: #1877F2; }
    .share-button.whatsapp { background-color: #25D366; }
    .share-button.linkedin { background-color: #0A66C2; }
    .share-button.email { background-color: #888888; }

    .broken-link-alert {
    outline: 2px solid #ef4444 !important;
    background-color: #fee2e2 !important;
    color: #ef4444 !important;
    text-decoration: wavy underline red !important;
    position: relative;
}

.broken-link-alert::after {
    content: "404!";
    position: absolute;
    top: -15px;
    right: 0;
    background: #ef4444;
    color: white;
    font-size: 8px;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: bold;
}