section.save-the-date {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-sizing: border-box;
    background-color: #1a1a1a;
}

.save-the-date .bg-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.save-the-date .bg-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.save-the-date .bg-image-wrapper .bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}

.save-the-date .content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 2.5rem;
    color: var(--white, #ffffff);
    text-align: left;
}

.save-the-date .hashtag {
    font-family: var(--playfair, serif);
    font-style: italic;
    font-size: 16px;
    font-weight: 300;

    letter-spacing: 0.5px;
    opacity: 0.9;
}

.save-the-date .date-title {
    font-family: var(--playfair, serif);
    font-size: 52px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.save-the-date .count-wrapper {
    display: flex;
    gap: 2.5rem;
    align-items: baseline;
}

.save-the-date .item {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.save-the-date .item .count-num,
.save-the-date .item .label {
    font-family: var(--playfair, serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Responsif */
@media (max-width: 425px) {
    .save-the-date .content {
        padding: 3rem 2rem;
    }

    .save-the-date .date-title {
        font-size: 42px;
    }

    .save-the-date .count-wrapper {
        gap: 1.8rem;
    }

    .save-the-date .item .count-num,
    .save-the-date .item .label {
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .save-the-date .content {
        padding: 2.5rem 1.5rem;
    }

    .save-the-date .date-title {
        font-size: 36px;
    }

    .save-the-date .count-wrapper {
        gap: 1.2rem;
    }

    .save-the-date .item .count-num,
    .save-the-date .item .label {
        font-size: 18px;
    }
}
