footer.wp-block-template-part{
    padding-bottom: 100px;
}
.footer-banner {
    z-index: 999;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    width: 92%;
    max-width: 1200px; 
}
.footer-banner.reddit_260104 {
    background: #FEF6F1;
    border: 2px solid #F05100;
    padding: 24px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}
#close-button {
    position: absolute;
    right: 0;
    top: 0 ;
    width: 32px;
    height:32px;
    margin: 0;
    cursor: pointer;
}
#close-button::before, #close-button::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 10px;
    width: 16px;
    height: 2px;
    background-color: #999;
}
#close-button::before {
    transform: rotate(45deg);
}
#close-button::after {
    transform: rotate(-45deg);
}

.reddit_260104 .banner-content{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.reddit_260104 .text-section {
    text-align: left;
    max-width: 600px;
}
.reddit_260104 .reddit-icon {
    width: 40px;
    height: auto;
}

.reddit_260104 .text-section .title {
    font-size:20px;
    margin: 0 0 8px 0;
    color:  #161929;
    font-family: Inter;
    font-weight: 600;
}
.reddit_260104 .text-section p {
    font-size: 16px;
    margin: 0 0 16px 0;
    color: #333;
    line-height: 1
}

.reddit_260104 .cta-button {
    background-color: #FF4500;
    color: #fff;
    line-height: 1.25;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

/* Large PC */

@media (min-width: 1600px) {
    .footer-banner.reddit_260104 {
        left: 8px;
        transform: translateX(0);
        bottom: 8px;
        max-width: 300px;
        flex-direction: column;
    }
    .reddit_260104 .cta-button {
        width: calc(100% - 48px);
        text-align: center;
    }
}

@media (max-width: 800px) {
    .footer-banner.reddit_260104 {
        padding: 16px;
    }
    .reddit_260104 .text-section .title {
        font-size:18px;
    }
    .reddit_260104 .text-section p {
        font-size: 14px;
    }
}

@media (max-width: 520px) {
    .footer-banner.reddit_260104 {
        flex-direction: column;
    }
    .reddit_260104 .text-section .title {
        font-size:16px;
    }
    .reddit_260104 .cta-button {
        width: calc(100% - 32px);
        text-align: center;
        font-size: 14px;
        padding: 10px 20px;
    }
}