.wedding-template-collapse-item {
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.wedding-template-collapse-header {
    padding: 24px 0;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 1px solid rgba(7, 7, 7, 0.40);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wedding-template-collapse-item-content {
    padding: 0;
    color: var(--template-story-content-title-color, #070707);
    font-family: "Merriweather Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-in-out,
    opacity 0.3s ease-in-out,
    padding 0.2s ease-in-out;
}

.wedding-template-collapse-item-content.active {
    max-height: 100px;
    opacity: 1;
    padding: 38px 0 64px 0;
}

.wedding-template-collapse-header-text {
    font-family: Cormorant;
    color: var(--template-story-content-desc-color, #070707);
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 1200px) {
    .wedding-template-collapse-header-text {
        font-size: max(4vw, 24px);
    }

    .wedding-template-collapse-header {
        padding: 15px 0;
    }

    .wedding-template-collapse-header-icon svg {
        width: max(3.75vw, 32px);
        height: max(1.5vw, 14px);
    }

    .wedding-template-collapse-item-content {
        font-size: max(2vw, 14px);
        line-height: max(3.3333333333vw, 20px);
    }

    .wedding-template-collapse-item-content.active {
        padding: 16px 0 24px 0;
    }
}