.ttb-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.ttb-post-card {
    width: 250px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    position: relative;
}

.ttb-featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #fab915;
    color: #fff;
    padding: 5px 10px;
    font-weight: 400;
    border-radius: 5px;
    font-size: 12px;
}

.ttb-post-card a {
    text-decoration: none;
}

.ttb-post-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.ttb-post-card h3 {
    margin-top: 10px;
    font-size: 16px;
}

.ttb-cta-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #fab915;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fab915;
    border-radius: 15px;
    margin-top: 5px;
}

.ttb-cta-button:hover {
    display: inline-block;
    padding: 8px 16px;
    background-color: #fff;
    color: #fab915;
    border: 1px solid #fab915;
    text-decoration: none;
    border-radius: 15px;
    margin-top: 5px;
}

.glide__arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.glide__arrow {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.glide__arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}