.library-page-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #272154;
    text-align: center;
    margin-bottom: 50px;
}

.library-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #272154;
    margin-bottom: 25px;
}

.library-file-box,
.library-brochure-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    background: #fff;
    transition: all 0.25s ease;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

.library-file-box-link {
    display: flex;
    align-items: center;
    gap: 15px;
    /* padding: 18px 22px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px; */
    background: #fff;
    transition: all 0.25s ease;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

.library-file-box:hover,
.library-brochure-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.library-file-icon {
    width: 46px;
    height: auto;
    flex-shrink: 0;
}

.library-file-link-text {
    color: #ED291E;
    font-size: 0.95rem;
    font-weight: 600;
}

.library-file-link-text:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .library-page-title {
        font-size: 2rem;
    }

    .library-section-title {
        font-size: 1.5rem;
    }

    .library-file-link-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {

    .library-file-box,
    .library-brochure-box {
        padding: 15px 18px;
    }

    .library-file-icon {
        width: 40px;
    }
}