/**
 * @package     Joomla.Site
 * @subpackage  Templates.baby-in-brazil
 *
 * @author      Oleg Kosarev (DevOpsolution) <dev.oleg.kosarev@outlook.com>
 * @copyright   (C) 2026 Oleg Kosarev. All Rights Reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @version     1.0.0
 * @since       1.0.0
 *
 * UI:          sidebar-list
 *
 * Compact right-column list. Designed for recent posts, popular posts and
 * related items. The block is light, strict and free from Joomla widget sadness.
 */

.sidebar-list {
    margin-bottom: 32px;
}

.sidebar-list__title {
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--theme-color);
    color: var(--theme-text);
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.1;
    font-weight: 650;
    letter-spacing: -.025em;
}

.sidebar-list__items {
    display: grid;
    gap: 12px;
}

.sidebar-list__item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 92px;
    padding: 10px;
    border: 2px solid var(--theme-line);
    border-radius: var(--theme-radius-sm);
    background: var(--theme-surface);
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.sidebar-list__item:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--theme-color-rgb), .32);
    box-shadow: var(--gallery-shadow-soft);
    background: var(--theme-surface-soft);
}

.sidebar-list__media {
    display: block;
    width: 92px;
    height: 72px;
    overflow: hidden;
    border-radius: var(--theme-radius-xs);
    background: var(--theme-surface-soft);
}

.sidebar-list__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.sidebar-list__item:hover .sidebar-list__media img {
    transform: scale(1.045);
}

.sidebar-list__body {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.sidebar-list__item-title {
    color: var(--theme-text);
    font-size: 16px;
    line-height: 1.22;
    font-weight: 700;
}

.sidebar-list__meta {
    color: var(--theme-color);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 550;
}

@media (max-width: 991.98px) {
    .sidebar-list {
        margin-top: 24px;
    }
}
