﻿.social-banner {
    font-family: 'bebas_neueregular', sans-serif;
    font-weight: 900;
    width: 100%;
    display: flex;
    gap: 5px;
    text-align: center;
    padding-left: 100px !important;
}

.social-text {
    font-size: 24px;
}

.section-wrapper {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.content {
    height: 100%;
}

.section-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    opacity: 0.06;
    clip-path: polygon(100% 60%, 0% 40%, 0% 100%, 100% 100%);
    z-index: -1;
    pointer-events: none;
}

.hero-section {
    display: flex;
}

    .hero-section .stories {
        flex: 5;
    }

    .hero-section .quick-links-sidebar {
        flex: 2;
    }

@media (min-width: 576px) {
    .social-text {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .social-text {
        font-size: 36px;
    }
}

@media (min-width: 992px) {
    .social-text {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
    }

    .social-banner {
        padding-left: 20px !important;
    }

        .social-banner > i {
            font-size: 1.5em;
        }
}

.photo-gallery-section {
    padding: 30px 0;
    color: var(--text-color);
}

    .photo-gallery-section .section-title {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    height: 300px;
}

.photo-item {
    position: relative;
    overflow: hidden;
}

    .photo-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .photo-item:hover img {
        transform: scale(1.05);
    }

@media (max-width: 992px) {
    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }

    .photo-grid {
        height: auto;
    }
}

@media (max-width: 576px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {
    .video-card {
        width: 100%;
    }

        .video-card iframe {
            width: 100%;
        }
}

@media (max-width: 991px) {
    .video-card iframe {
        width: 100%;
    }
}
