.homeseo {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.homeseo__inner {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 35px 20px;
    background: #fff;
}

.homeseo__title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0 0 12px;
    line-height: 1.4;
}

.homeseo__content {
    position: relative;
}

.homeseo__text {
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.4, 0, .2, 1);
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.homeseo__text p {
    margin: 0 0 10px;
}

.homeseo__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
    transition: opacity .3s ease;
}

.homeseo.is-expanded .homeseo__fade {
    opacity: 0;
}

.homeseo__toggle {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
}

.homeseo__btn {
    background: none;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 24px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease;
}

.homeseo__btn:hover {
    border-color: #888;
    color: #222;
}

.homeseo.no-overflow .homeseo__toggle,
.homeseo.no-overflow .homeseo__fade {
    display: none;
}
