.tuf-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 30px 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.tuf-section-header {
    text-align: center;
    margin-bottom: 20px;
}

.tuf-section-title {
    font-size: 36px !important;
    font-weight: 400 !important;
    margin: 0 0 -5px 0 !important;
    color: #333 !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
    font-family: "Rubik", Sans-serif !important;
}

.tuf-section-underline {
    display: block;
    width: 40px;
    height: 4px;
    background-color: #8bc34a;
    margin: 8px auto 5px auto;
    border-radius: 2px;
}

.tuf-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .tuf-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tuf-wrapper {
        width: 100%;
        margin: 0 auto;
        padding: 30px 15px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

    .tuf-grid {
        grid-template-columns: 1fr;
    }

    .tuf-column {
        background: #fff;
        border-radius: 10px;
        border: 1px solid #f0f0f0;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    .tuf-section-title {
        font-size: 30px !important;
    }
}

.tuf-column {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.tuf-column--regulasi {
    background: #fafafa;
}

.tuf-column--literatur {
    background: #fafafa;
}

.tuf-column__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tuf-column__title-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.tuf-column__line {
    border-top: 1px solid #cccccc;
    margin-bottom: 20px;
}

.tuf-column__identity {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.tuf-column__icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.tuf-column__icon--red {
    background: #e53935;
}

.tuf-column__icon--green {
    background: #8bc34a;
}

.tuf-column__icon--video {
    background: #1a1a1a;
}

.tuf-column__icon svg {
    width: 22px;
    height: 22px;
}

.tuf-column__label {
    font-size: 25px;
    font-weight: 600;
    color: #333;
}

.tuf-column__view,
.tuf-column__view:hover {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: auto;
}

.tuf-column__view:hover {
    color: #8bc34a;
}

.tuf-column__desc {
    font-size: 14px;
    color: #4b5563;
    margin: 0 0 0px !important;
}

.tuf-card {
    display: flex;
    gap: 18px;
    padding: 0px;
    border-radius: 0px;
    background: #fafafa;
    border: 0px solid #f0f0f0;
    margin-bottom: 16px;
}

.tuf-card__media {
    flex-shrink: 0;
}

.tuf-card__pdf-icon {
    width: 90px;
    height: 90px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
}

.tuf-card__pdf-icon:hover {
    opacity: 0.9;
    color: #eeeeee;
}

.tuf-card__pdf-icon--red {
    background: linear-gradient(180deg, #ff6b6b, #f94144);
}

.tuf-card__pdf-icon--green {
    background: linear-gradient(180deg, #02c39a, #047857);
}

.tuf-card__body {
    flex: 1;
    min-width: 0;
}

.tuf-wrapper .tuf-card .tuf-card__category {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 0px !important;
}

.tuf-card__title {
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
    color: #111827;
}

.tuf-card__title a {
    color: inherit;
    text-decoration: none !important;
}

.tuf-card__title a:hover {
    color: #16a34a;
}

.tuf-card__excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.tuf-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
}

.tuf-card__download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.tuf-card__download--red {
    color: #e53935;
}

.tuf-card__download--green {
    color: #8bc34a;
}

.tuf-card__download:hover {
    opacity: 0.8;
}

.tuf-card__download svg {
    width: 16px;
    height: 16px;
}

.tuf-card__file-size {
    font-weight: 400;
}

.tuf-card__date {
    font-size: 13px;
    color: #9ca3af;
}

.tuf-video-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tuf-video__embed {
    border-radius: 14px;
    overflow: hidden;
    line-height: 0;
}

.tuf-video__embed iframe {
    width: 100% !important;
    height: 220px;
    border: 0;
}

.tuf-video__placeholder {
    display: block;
    width: 100%;
    text-align: center;
    padding: 70px 10px;
    border: 1px dashed #d1d5db;
    border-radius: 14px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 600;
}

.tuf-video__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #111827;
}

.tuf-video__caption {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
}

.tuf-empty {
    color: #9ca3af;
    margin: 0;
}
