.announcement {
    position: relative;
    z-index: 10;
    background: linear-gradient(100deg, #9e2e1d, #df6b34, #9e2e1d);
    background-size: 200% 100%;
    color: #fff9ed;
    text-align: center;
    padding: 10px 18px;
    font-size: 11px;
    letter-spacing: .5px;
    animation: announcement-flow 4s ease-in-out infinite
}

.announcement b {
    color: #fff2a9
}

.announcement-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 7px 1px 0;
    border-radius: 50%;
    background: #fff2a9;
    box-shadow: 0 0 0 0 rgba(255, 242, 169, .8);
    animation: announcement-pulse 1.5s infinite
}

.course-benefits {
    background: #f0e2d4;
    padding: 95px 0
}

.benefits-heading {
    max-width: 660px;
    margin-bottom: 40px
}

.benefits-heading p {
    max-width: 530px;
    line-height: 1.7;
    font-size: 14px;
    color: #67554e
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.benefit-card {
    background: #fffaf4;
    padding: 28px;
    border: 1px solid rgba(181, 106, 66, .16);
    border-radius: 4px
}

.benefit-card span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e8b19a;
    color: #3d2117;
    font-size: 16px;
    margin-bottom: 15px
}

.benefit-card h3 {
    font: 600 22px/1.1 'Playfair Display';
    margin: 0 0 10px
}

.benefit-card p {
    font-size: 13px;
    line-height: 1.65;
    color: #67554e;
    margin: 0
}

.location-note {
    margin-top: 26px;
    padding: 17px 20px;
    border-left: 3px solid #b56a42;
    background: #fffaf4;
    font-size: 13px;
    color: #5e4033
}

.location-note b {
    color: #8c4b2f
}

@keyframes announcement-flow {
    50% {
        background-position: 100% 0
    }
}

@keyframes announcement-pulse {
    70% {
        box-shadow: 0 0 0 8px rgba(255, 242, 169, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 242, 169, 0)
    }
}

@media(max-width:720px) {
    .course-benefits {
        padding: 70px 0
    }

    .benefit-grid {
        grid-template-columns: 1fr
    }

    .announcement {
        font-size: 10px
    }
}

@media(max-width:480px) {
    .announcement {
        padding: 9px 14px;
        font-size: 9.5px;
        line-height: 1.5
    }

    .course-benefits {
        padding: 56px 0
    }

    .benefit-card {
        padding: 22px
    }

    .location-note {
        padding: 14px 16px;
        font-size: 12.5px
    }
}