/* Tuesday Inspiration Page Styles */

/* Hero Section - Matching MICE page style */
.tuesday-hero-section {
    background: url('https://quimbaya-tours.com/wp-content/uploads/2023/11/pexels-luis-dalvan-1684166.jpg') center/cover;
    min-height: 546px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tuesday-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tuesday-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

/* Social Media Section */
.social-media-section {
    padding-top: 35px;
    padding-bottom: 111px
}

.social-card {
    background: #f5f5f5;
    border-radius: 15px;
    padding: 40px 30px;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-icon {
    width: fit-content;
    height: fit-content;
    font-size: 25px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.social-username {
    font-family: "Inter", sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #333;
}

.social-description {
    font-size: 18px;
    color: #484848;
}

.social-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: black;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Archive Section */
.archive-section {
    padding: 80px 0;
}

.year-section {
    margin-bottom: 60px;
    display: flex;
}

.year-title {
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    padding-right: 50px;
    margin-right: 50px;
    margin-bottom: 150px;
    border-right: solid black 1px;
}

.month-card {
    height: 100%;
}

.month-name {
    font-family: "Inter", sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: black;
}

.ti-month-btn {
    color: black;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    gap: 8px;
}

/* Responsive Styles */
@media (max-width: 991px) {

    .social-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .tuesday-hero-section {
        min-height: 400px;
    }

    .tuesday-hero-wave svg {
        height: 60px;
    }

    .social-icon {

    }

    .archive-section {
        padding: 0;
    }

    .year-section {
        flex-direction: column;
        padding-left: 20px;
    }

    .year-title {
        padding: 0;
        margin-right: 0;
        border-right: 0;
        margin-bottom: 47px;
    }

    .month-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .social-media-section {
        padding: 0 0 40px 0;
    }

    .social-card {
        padding: 30px 20px;
    }
}