/**
 * 2023-2025 YourCompany
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 *
 * @author    YourCompany <contact@yourcompany.com>
 * @copyright 2023-2025 YourCompany
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

.homepageblock-container {
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.homepageblock-title {
    margin-bottom: 15px;
    font-weight: 600;
    color: #232323;
}

.homepageblock-text {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #363a42;
}

.homepageblock-text p {
    margin-bottom: 10px;
}

.homepageblock-toggle-button {
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

/* Animation for content toggle */
.homepageblock-text-full,
.homepageblock-text-short {
    transition: opacity 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .homepageblock-container {
        padding: 15px;
        margin: 20px 0;
    }
}