.page-materials {
    padding: clamp(40px, 4vw, 70px) 0;
}

.single-title{
   margin: 0 0 12px;
   font-size: clamp(1.8rem, 2.6vw, 2.6rem);
   font-weight: 800;
   letter-spacing: -0.02em;
}

.page-materials .single-content {
    margin-bottom: 32px;
}

.materials {
    margin-top: 24px;
}
.materials__table-wrap {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden; 
}

.materials__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.materials__table thead th {
    text-align: left;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.materials__table tbody td {
    padding: 16px 20px;
    vertical-align: middle;
    font-size: 15px;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06);
}
.materials__table tbody tr:last-child td {
    box-shadow: none;
}
.materials__table tbody tr {
    transition: background .15s ease;
}
.materials__table tbody tr:hover {
    background: rgba(0,0,0,0.02);
}

.materials__title {
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: break-word;
}
.materials__link {
    display: block;
    text-decoration: none;
    transition: opacity .15s ease;
}
.materials__link:hover {
    text-decoration: underline;
}

.materials__col-type {
    width: 64px;
}
.materials__type {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.materials__icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}
.materials__type-fallback {
    opacity: 0.4;
    font-weight: 600;
}

@media (max-width: 768px) {
    .materials__table thead th,
    .materials__table tbody td {
        padding: 13px 14px;
        font-size: 14px;
    }
    .materials__col-type {
        width: 48px;
    }
    .materials__icon {
        width: 20px;
        height: 20px;
    }
}