.ata-section-header { text-align:center; margin-bottom:40px; }
.ata-section-header__eyebrow { font-size:.75rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:#e8a020; margin:0 0 8px; }
.ata-section-header__heading { font-size:clamp(1.5rem,3vw,2.1rem); font-weight:800; color:#1a2e14; margin:0; line-height:1.2; }

.ata-tour-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:28px; }

/* Card — whole thing is a link */
.ata-tour-card {
    display:flex; flex-direction:column;
    background:#fff; border-radius:10px; overflow:hidden;
    box-shadow:0 4px 20px rgba(0,0,0,.09);
    text-decoration:none; color:inherit;
    height:100%;
    transition:transform .25s ease, box-shadow .25s ease;
}
.ata-tour-card:hover { transform:translateY(-4px); box-shadow:0 10px 32px rgba(0,0,0,.14); }

/* Thumbnail */
.ata-tour-card__thumb { position:relative; width:100%; aspect-ratio:16/10; overflow:hidden; background:#fff; flex-shrink:0; padding: 8px 8px 0 8px; }
.ata-tour-card__thumb img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .45s ease; }
.ata-tour-card:hover .ata-tour-card__thumb img { transform:scale(1.06); }
.ata-tour-card__placeholder { width:100%; height:100%; }
.ata-tour-card__placeholder svg { width:100%; height:100%; display:block; }

/* Body */
.ata-tour-card__body { padding:10px 12px 12px; display:flex; flex-direction:column; gap:7px; flex:1; }

/* Title */
.ata-tour-card__title { margin:0; font-size:1rem; font-weight:700; line-height:1.35; color:#1a2e14; }

/* Duration row */
.ata-tour-card__duration { display:flex; align-items:center; gap:6px; font-size:0.9rem; color:#555; }
.ata-tour-card__duration .ti { font-size:14px; color:#2d7a1e; flex-shrink:0; }

/* Excerpt */
.ata-tour-card__excerpt { margin:0; font-size:.82rem; color:#666; line-height:1.55; flex:1; }

/* Footer row: stars left, button right */
.ata-tour-card__footer { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-top:auto; }

/* Stars */
.ata-tour-card__stars { display:flex; align-items:center; gap:2px; }
.ata-star { width:14px; height:14px; flex-shrink:0; }
.ata-star--full  { fill:#f5a623; color:#f5a623; }
.ata-star--half  { color:#f5a623; }
.ata-star--empty { fill:#ddd; color:#ddd; }

/* Button — B shape: left side has inward-pointing notch */
.ata-tour-card__btn {
    display:inline-flex; align-items:center;
    background:#2d7a1e; color:#fff;
    font-size:.72rem; font-weight:700;
    text-transform:uppercase; letter-spacing:.06em;
    padding:6px 14px 6px 16px; white-space:nowrap;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 10px 50%);
    pointer-events:none; /* card <a> handles the click */
}

/* Empty state */
.ata-no-tours { color:#888; font-style:italic; padding:16px 0; margin:0; }

/* Single card widget */
.ata-single-card-widget .ata-tour-card { height:auto; }

@media (max-width:640px) {
    .ata-tour-grid { grid-template-columns:1fr; }
    .ata-single-card-widget { max-width:100%; }
}

.ata-tour-card__title {
    margin-bottom: 5px !important;
}
.ata-tour-card__excerpt {
    margin-bottom: 5px !important;
}