.c30yba-banner {
    width: 100%;
    background: #fff6d9;
    border-bottom: 1px solid #f0d37a;
    padding: 12px 16px;
    box-sizing: border-box;
}

.c30yba-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.c30yba-banner__logo {
    height: 105px;
    object-fit: contain;
    flex: 0 0 105px;
}

.c30yba-banner__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
}

@media (max-width: 640px) {
    .c30yba-banner {
        padding: 10px 12px;
    }

    .c30yba-banner__inner {
        gap: 10px;
    }

    .c30yba-banner__text {
        font-size: 14px;
    }
}
/* Banner */
.celebration-banner{
    background: #fff;
    color: #000;
    width: 100%;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    border-bottom: 1px solid #ddd;
}

/* Main Layout */
.banner-content{
    max-width:780px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

/* Left Side */
.banner-left{
    display:flex;
    align-items:center;
}

/* Image */
.banner-logo{
    height:105px;
    object-fit:contain;
}

/* Text */
.banner-text h3{
    margin: 0;
}

.banner-text p{
    margin: 4px 0 0;
    font-size: 15px;
    color: #666;
}


@media (max-width: 640px) {
    .celebration-banner {
        padding: 10px 12px;
    }

    .banner-text h3{
        font-size: 14px;
    }

}