.tw-wrapper-5893dc78 {
    position: relative;
    width: 100%;
}
.tw-grid-5893dc78 {
    display: flex; /* Fallback for carousel */
    gap: 20px;
}
.tw-layout-grid .tw-grid-5893dc78 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Exactly 3 equal columns */
    gap: 20px;
}
.tw-layout-carousel .tw-grid-5893dc78 {
    display: flex; /* Carousel needs flex for scrolling */
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.tw-layout-carousel .tw-grid-5893dc78::-webkit-scrollbar {
    display: none;
}
.tw-card-5893dc78 {
    position: relative;
    width: 100%; /* Take full width of grid cell */
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
}
/* Fix for carousel cards */
.tw-layout-carousel .tw-card-5893dc78 {
    flex: 0 0 calc(33.333% - 13.333px);
    max-width: calc(33.333% - 13.333px);
}

/* Responsive sizing for Grid */
@media (max-width: 1024px) {
    .tw-layout-grid .tw-grid-5893dc78 {
        grid-template-columns: repeat(2, 1fr);
    }
    .tw-layout-carousel .tw-card-5893dc78 {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}
@media (max-width: 767px) {
    .tw-layout-grid .tw-grid-5893dc78 {
        grid-template-columns: 1fr;
    }
    .tw-layout-carousel .tw-card-5893dc78 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.tw-img-wrap-5893dc78 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
.tw-img-wrap-5893dc78 img {
    width: 100%; height: 100%; object-fit: cover;
}
.tw-labels-5893dc78 {
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}
.tw-name-label-5893dc78, .tw-title-label-5893dc78 {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    align-self: flex-start;
    font-size: 14px;
}
.tw-title-label-5893dc78 {
    align-self: flex-end;
}
.tw-toggle-5893dc78 {
    position: absolute;
    top: 0; right: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
}
.tw-overlay-5893dc78 {
    position: absolute;
    top: 0; right: 0;
    width: 40px; 
    height: 40px;
    border-radius: 50%; 
    background: rgba(0,0,0,0.3); 
    backdrop-filter: blur(15px);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0; 
    box-sizing: border-box;
}
.tw-overlay-5893dc78.active {
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    height: 100%;
    border-radius: 20px; 
    padding: 20px; 
}
.tw-overlay-content-5893dc78 {
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0; 
    transition: opacity 0.2s ease; 
    width: 100%;
    min-width: 260px; 
}
.tw-overlay-5893dc78.active .tw-overlay-content-5893dc78 {
     opacity: 1;
     transition: opacity 0.3s ease 0.2s; 
}
.tw-overlay-header-5893dc78 {
    display: flex;
    justify-content: space-between;
    margin-bottom: auto; 
}
.tw-overlay-desc-5893dc78 {
     margin-bottom: auto; 
}

.tw-close-5893dc78 {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    cursor: pointer;
}
.tw-overlay-footer-5893dc78 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.tw-overlay-footer-5893dc78 .tw-title-label-5893dc78 {
    align-self: auto;
}

.tw-linkedin-icon-5893dc78 {
    display: inline-block;
}
.tw-linkedin-icon-5893dc78 svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.tw-nav-5893dc78 {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}
.tw-nav-5893dc78 button {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: transparent;
    cursor: pointer;
}