.about-section {
}

.about-section h2 {
    font-size: 1.75rem;
}

.about-section .lead {
    font-size: 1rem;
}

.about-section p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.about-section .col-lg-6.ps-5 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.ad-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
}

.ad-card:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
}

.ad-image {
    width: 100%;
    height: fit-content;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
}

.ad-content {
}

.ad-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

.ad-description {
    text-align: justify;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-view-link {
    color: var(--primary);
}

.ads-section {
    background-color: white;
}

.ads-section h2 {
    font-size: 1.75rem;
}

.ads-section .row {
    margin: 0;
}

.bld {
    font-size: 1.2rem;
}

.btm1 {
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* ============================================
   TABLET STYLES (768px - 991px)
   ============================================ */
@media (min-width: 768px) {
    .about-section h2 {
        font-size: 2rem;
    }
    
    .about-section .lead {
        font-size: 1.1rem;
    }
    
    .about-section p {
        font-size: 1rem;
    }
    
    .ads-section h2 {
        font-size: 2rem;
    }
    
    .ad-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .ad-image {
        height: 200px;
    }
    
    .ad-title {
        font-size: 1.2rem;
    }
    
    .ad-description {
        font-size: 14px;
        -webkit-line-clamp: 4;
    }
}

/* ============================================
   DESKTOP STYLES (992px+)
   ============================================ */
@media (min-width: 992px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .about-section h2 {
        font-size: 2.25rem;
    }
    
    .about-section .lead {
        font-size: 1.15rem;
    }
    
    .about-section img {
        border-radius: 12px;
    }
    
    .ads-section {
        padding: 4rem 0;
    }
    
    .ads-section h2 {
        font-size: 2.25rem;
    }
    
    .ad-card {
        border-radius: 12px;
    }
    
    .ad-card:hover {
        transform: translateY(-5px);
    }
    
    .ad-image {
        height: 220px;
    }
    
    .ad-title {
        font-size: 1.25rem;
    }
    
    .ad-description {
        font-size: 15px;
        -webkit-line-clamp: 3;
    }
}

/* ============================================
   LARGE DESKTOP STYLES (1200px+)
   ============================================ */
@media (min-width: 1200px) {
    .about-section {
        padding: 5rem 0;
    }
    
    .about-section h2 {
        font-size: 2.5rem;
    }
    
    .about-section .lead {
        font-size: 1.2rem;
    }
    
    .about-section p {
        font-size: 1.05rem;
    }
    
    .about-section .col-12:first-child {
        padding-left: 3rem;
    }
    
    .ads-section {
        padding: 5rem 0;
    }
    
    .ads-section h2 {
        font-size: 2.5rem;
    }
    
    .ad-image {
        height: 250px;
    }
    
    .ad-content {
        padding: 1.5rem !important;
    }
    
    .ad-title {
        font-size: 1.3rem;
    }
}

