.horizontal-items-block {
    padding: 48px 0;
}

.horizontal-items-block .block-title {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 40px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.02em;
}

.horizontal-items-block .block-content {
    font-size: 16px;
    margin: 0 auto 40px;
    line-height: 1.6;
    max-width: 680px;
    text-align: center;
    opacity: 0.88;
}

.horizontal-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.horizontal-items-block .horizontal-item {
    position: relative;
    padding: 1px;
    background: #d4af37;
    border: 1px solid rgb(61 55 33 / 85%);
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.horizontal-items-block .horizontal-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    height: 100%;
    padding: 36px 22px 32px;
    border-radius: 3px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
    box-sizing: border-box;
}

.horizontal-items-block .horizontal-item:hover {
    transform: translateY(-6px);
    border-color: #e8c547;
    box-shadow: 0 14px 36px rgba(212, 175, 55, 0.18);
}

.horizontal-items-block .horizontal-item:hover .horizontal-item-inner {
    border-color: rgba(212, 175, 55, 0.65);
}

.horizontal-items-block .item-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #2a2410, #0f0f0f 70%);
    box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.35), 0 0 18px rgba(212, 175, 55, 0.12);
}

.horizontal-items-block .item-icon img {
    display: block;
    max-width: 36px;
    max-height: 36px;
    height: auto;
    object-fit: contain;
}

.horizontal-items-block .item-title {
    font-size: 19px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    letter-spacing: 0.04em;
    line-height: 1.3;
    color: #d4af37;
    text-transform: uppercase;
    padding: 0;
    border: none;
    width: auto;
}

.horizontal-items-block .item-divider {
    display: block;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.horizontal-items-block .item-description {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.9;
    max-width: 280px;
}

@media (max-width: 1023px) {
    .horizontal-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 599px) {
    .horizontal-items-block {
        padding: 32px 0;
    }

    .horizontal-items {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .horizontal-items-block .horizontal-item-inner {
        padding: 30px 20px 28px;
    }

    .horizontal-items-block .item-title {
        font-size: 17px;
    }
}
