.tn-49138594-container {
    background-color: #0a0a0a;
    padding: 40px;
    border-radius: 8px;
    font-family: sans-serif;
    color: #fff;
}
.tn-49138594-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}
.tn-49138594-logo {
    flex-shrink: 0;
}
.tn-49138594-title {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}
.tn-49138594-nav-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    overflow: hidden;
}
.tn-49138594-tabs-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.tn-49138594-tabs-scroll::-webkit-scrollbar {
    display: none;
}
.tn-49138594-tabs-list {
    display: flex;
    gap: 10px;
}
.tn-49138594-tab {
    background: transparent;
    border: 2px solid #333;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.tn-49138594-tab:hover {
    border-color: #7fb63e;
}
.tn-49138594-tab.active {
    background-color: #7fb63e;
    border-color: #7fb63e;
}
.tn-49138594-nav-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}
.tn-49138594-panel {
    display: none;
    animation: tn-49138594-fade 0.4s ease-in-out;
}
.tn-49138594-panel.active {
    display: block;
}
@keyframes tn-49138594-fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.tn-49138594-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tn-49138594-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}
.tn-49138594-card:hover {
    transform: translateY(-5px);
}
.tn-49138594-card-img {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}
.tn-49138594-card-img img,
.tn-49138594-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tn-49138594-card:hover .tn-49138594-card-img img {
    transform: scale(1.05);
}
.tn-49138594-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tn-49138594-card-excerpt {
    font-size: 13px;
    color: #aaa;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .tn-49138594-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .tn-49138594-grid { grid-template-columns: 1fr; }
    .tn-49138594-header { flex-direction: column; align-items: flex-start; }
}