.exc-grid-a07da507 {
    display: grid;
    gap: 40px; /* Default gap, can be changed via control */
    grid-template-columns: repeat(3, 1fr); /* Default, changed via control */
}
.exc-card-a07da507 {
    background-color: #FAF8F4; /* Default */
    border-radius: 8px; /* Default */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* Very subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.exc-card-a07da507:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.exc-img-wrap-a07da507 {
    position: relative;
    width: 100%;
    padding-top: 60%; /* Roughly a bit taller than 16:9 */
    overflow: hidden;
    background: #e8e3dc;
}
.exc-img-wrap-a07da507 img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 8px 8px 0 0; /* Match card radius top, sharp bottom */
}
.exc-card-a07da507:hover .exc-img-wrap-a07da507 img {
    transform: scale(1.03);
}

.exc-content-a07da507 {
    padding: 30px; /* Default padding */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.exc-distance-a07da507 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8BA382; /* Default */
    margin-bottom: 12px;
}

.exc-title-row-a07da507 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.exc-title-a07da507 {
    margin: 0;
    font-family: "Playfair Display", "Lora", serif; /* Serif default */
    font-size: 23px; /* Default */
    font-weight: 500;
    color: #49392F; /* Default */
    line-height: 1.3;
}

.exc-icon-a07da507 {
    color: #8BA382;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}
.exc-icon-a07da507 svg {
    fill: #8BA382;
    width: 24px;
    height: 24px;
}

.exc-divider-a07da507 {
    width: 40px;
    height: 2px;
    background-color: #8BA382; /* Default */
    margin-bottom: 20px;
}

.exc-desc-a07da507 {
    margin: 0 0 25px;
    color: #756B64; /* Default */
    font-size: 16px; /* Default */
    line-height: 1.6; /* Default */
    flex-grow: 1; /* Pushes tags to the bottom */
}
.exc-desc-a07da507 p {
    margin: 0 0 10px;
}
.exc-desc-a07da507 p:last-child {
    margin-bottom: 0;
}

.exc-tags-a07da507 {
    font-size: 0.8rem;
    color: #9B938D; /* Default */
    font-weight: 400;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

@media (max-width: 1024px) {
    .exc-grid-a07da507 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 767px) {
    .exc-grid-a07da507 { grid-template-columns: 1fr !important; }
}
