/*
 * Copyright since 2026 Agence123 - Proprietary
 * Expand/collapse behaviour for the eliquidehomeseoblocs cards.
 * Base card styling is inherited from the theme's .home-seo* classes so the
 * blocks look identical to the eliquidehomeseo module.
 */

/* The "read more" label behaves like a button. */
.home-seoblocs__link {
    cursor: pointer;
    display: inline-block;
    background: none;
    border: 0;
    padding: 0;
    -webkit-user-select: none;
    user-select: none;
}

/* Collapsed state: only the "read more" wording is visible. */
.home-seoblocs__less {
    display: none;
}

/* Expanded state (checkbox checked): drop the 3-line clamp, reveal the rest. */
.home-seoblocs__toggle:checked ~ .home-seo__text.home-seoblocs__text {
    display: block;
    overflow: visible;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
}

.home-seoblocs__toggle:checked ~ .home-seoblocs__link .home-seoblocs__more {
    display: none;
}

.home-seoblocs__toggle:checked ~ .home-seoblocs__link .home-seoblocs__less {
    display: inline;
}
