.homepage-section {
    position: relative
}

.aurora-edit-section {
    position: absolute;
    display: inline-block;
    width: 36px;
    height: 36px;
    top: -45px;
    color: inherit;
    background-color: unset;
    border: solid 1px;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 14px;
    z-index: 999;
    transition: background-color 0.2s ease;
}

.aurora-edit-section:hover {
    background-color: unset;
    color: var(--link-hover-color);
}

.homepage {
    padding: 60px 40px;    
    display: flex;
    flex-direction: column;
    row-gap: 100px
}

.custom-content-area * {
    max-width: 100%
}

@media (max-width: 768px) {
    .homepage {
        padding: 30px 20px;
        row-gap: 70px
    }
}

@media (max-width: 480px) {
    .homepage {
        padding: 15px 10px;
        row-gap: 40px
    }
}