.hds-le-group {
        display: flex;
        flex-direction: column;
        gap: 60px;
        width: 100%;
}

.hds-le {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 40px;
        align-items: center;
        width: 100%;
}

.hds-le__media {
        width: 100%;
}

.hds-le__media .hds-le__img,
.hds-le__media img {
        display: block;
        width: 100%;
        height: auto;
        max-width: 100%;
}

.hds-le__body {
        display: flex;
        flex-direction: column;
        gap: 16px;
}

.hds-le__title {
        margin: 0;
        font-weight: 800;
        font-size: clamp(24px, 2.4vw, 34px);
        line-height: 1.15;
        color: #41211c;
        text-transform: none;
}

.hds-le__date {
        margin: 0;
        font-size: clamp(20px, 2vw, 28px);
        line-height: 1.2;
        color: #41211c;
        font-weight: 400;
}

.hds-le__text {
        font-size: 17px;
        line-height: 1.55;
        color: #41211c;
}

.hds-le__text p {
        margin: 0 0 1em 0;
}

.hds-le__text p:last-child {
        margin-bottom: 0;
}

.hds-le__text strong,
.hds-le__text b {
        font-weight: 700;
}

.hds-le__download {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        align-self: flex-start;
        margin-top: 8px;
        padding: 14px 28px;
        background: #ececea;
        color: #41211c;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        text-decoration: none;
        border-radius: 2px;
        transition: background 0.2s ease;
}

.hds-le__download:hover,
.hds-le__download:focus {
        background: #e0dfdb;
        color: #41211c;
        text-decoration: none;
}

.hds-le__download-icon {
        flex: 0 0 auto;
}

.hds-le--empty {
        display: block;
        text-align: center;
        padding: 60px 20px;
        font-size: 18px;
        color: #888;
}

@media (max-width: 768px) {
        .hds-le {
                grid-template-columns: 1fr;
                gap: 24px;
        }

        .hds-le--reverse .hds-le__media {
                order: -1;
        }
}
