
/* Banner Section */
.banner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.ad-banner-content {
    width: 728px;
    height: 90px;
    background-color: white;
    border: 1px dashed var(--brand-green);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ad-banner-placeholder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
}

.ad-gif-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f9;
    width: 120px;
    height: 70px;
    border-radius: 4px;
    color: var(--text-secondary);
}

.ad-gif-area i {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    color: var(--brand-green);
}

.ad-gif-area span {
    font-size: 0.7rem;
    font-weight: 600;
}

.ad-text-area {
    flex: 1;
    padding-left: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ad-text-area h4 {
    font-size: 1.2rem;
    color: var(--brand-green);
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.ad-text-area p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.2;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .ad-banner-content {
        width: 100%;
        height: auto;
        min-height: 90px;
        flex-direction: column;
        padding: 1rem;
    }
    
    .ad-banner-placeholder {
        flex-direction: row;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .ad-banner-placeholder {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .ad-text-area {
        padding-left: 0;
        text-align: center;
    }
}
