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

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

.tholos-beaches__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tholos-beaches__card {
    flex: 0 0 calc((100% - 30px) / 2);
    background: #fff;
    text-align: left;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.tholos-beaches__card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
}

.tholos-beaches__image {
    width: 100%;
    height: 280px !important;
    overflow: hidden;
}

.tholos-beaches__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    margin: 0 !important;
    transition: transform 0.6s ease;
}

.tholos-beaches__card:hover .tholos-beaches__image img {
    transform: scale(1.05);
}

.tholos-beaches__body {
    padding: 28px;
}

.tholos-beaches__eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #8a8578;
    margin-bottom: 10px;
}

.tholos-beaches__name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1f2e2e;
    margin: 0 0 10px;
}

.tholos-beaches__tags {
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    color: #1f4d4d;
    margin: 0 0 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e2d9;
}

.tholos-beaches__text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #4a4a45;
    margin: 0 0 16px;
}

.tholos-beaches__more {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
    margin-bottom: 0;
}

.tholos-beaches__more.is-open {
    max-height: 600px;
    opacity: 1;
    margin-bottom: 16px;
}

.tholos-beaches__full-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #4a4a45;
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid #e5e2d9;
}

.tholos-beaches__btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    width: auto !important;
    max-width: max-content !important;
    height: auto !important;
    background: #1f4d4d !important;
    background-image: none !important;
    color: #fff !important;
    border: 2px solid #1f4d4d !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1 !important;
    padding: 12px 20px !important;
    box-sizing: border-box;
    box-shadow: none !important;
    text-shadow: none !important;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.tholos-beaches__btn:hover {
    background: transparent !important;
    background-image: none !important;
    color: #1f4d4d !important;
}

.tholos-beaches__btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.tholos-beaches__btn.is-open .tholos-beaches__btn-arrow {
    transform: rotate(90deg);
}

@media (max-width: 700px) {
    .tholos-beaches__card {
        flex: 0 0 100%;
    }
}