.things-to-do-column {
    position: relative;
}

.thing-to-do-buttons {
    bottom: 0px;
}

.things-to-do-column {
    display: block;
    text-decoration: none;
    color: inherit;
}

.things-to-do-column:hover {
    text-decoration: none;
    box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.things-to-do-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.things-to-do-image-container {
    overflow: hidden;
    height: 250px;
}

.things-to-do-image-container .things-to-do-image {
    transform-origin: center center;
    transition: transform 0.5s ease-in-out;
}

.things-to-do-column:hover .things-to-do-image-container .things-to-do-image,
a.things-to-do-column:hover .things-to-do-image-container .things-to-do-image {
    transform: scale(1.2);
}

.thing-to-do-details {
    height: 44px;
    padding: 0 22px;
    border-radius: 10px;
    border: none;
    background: #195e46;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 44px;
    cursor: pointer;
    white-space: nowrap;
}

.thing-to-do-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.thing-to-do-register {
    height: 44px;
    padding: 0 22px;
    border-radius: 10px;
    border: 1px solid #004d32;
    background: #fff;
    color: #195e46;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 44px;
    cursor: pointer;
    white-space: nowrap;
}

/* Buttons size to content but never exceed 80% of container */
.thing-to-do-details,
.thing-to-do-register {
    width: auto;
    max-width: none;
}

.paid-event {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    margin-left: 20px;
    padding: 0 0 12px 0;
}

.paid-event i {
    color: #3F3F3F;
    font-size: 16px;
    margin-top: 0;
}

.paid-event p {
    margin: 0;
    padding: 0;
    color: #3F3F3F;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

/* Ensure consistent text color across breakpoints */
.thing-to-do-summary,
.thing-to-do-organizer,
.thing-to-do-phone,
.thing-to-do-email {
    color: #3F3F3F;
}

.thing-to-do-summary a,
.thing-to-do-organizer a,
.thing-to-do-phone a,
.thing-to-do-email a {
    color: #3F3F3F;
    text-decoration: none;
}

@media (max-width: 1024px) {

    .thing-to-do-summary,
    .thing-to-do-organizer,
    .thing-to-do-phone,
    .thing-to-do-email {
        color: #3F3F3F;
    }

    .thing-to-do-summary a,
    .thing-to-do-organizer a,
    .thing-to-do-phone a,
    .thing-to-do-email a {
        color: #3F3F3F;
        text-decoration: none;
    }
}

@media (max-width: 768px) {
    .thing-to-do-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .thing-to-do-details,
    .thing-to-do-register {
        width: auto;
        max-width: none;
    }
}