.tholos-area {
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

.tholos-area * {
    box-sizing: border-box;
}

.tholos-area__card {
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.tholos-area__image {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.tholos-area__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
}

.tholos-area__bar {
    display: flex;
    background: #1f4d4d;
    padding: 30px 20px;
}

.tholos-area__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 0 10px;
}

.tholos-area__icon {
    width: 34px;
    height: 34px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tholos-area__icon svg {
    width: 100%;
    height: 100%;
}

.tholos-area__label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
    line-height: 1.4;
}

@media (max-width: 700px) {
    .tholos-area__bar {
        flex-wrap: wrap;
        row-gap: 24px;
    }

    .tholos-area__item {
        flex: 0 0 50%;
    }

    .tholos-area__image {
        height: 240px;
    }
}