/* =========================================================
   DOWNLOADS SECTION
   ========================================================= */

.downloads-section {
    width: 100%;
    margin: 0;
    padding: 0;

    font-family: "Segoe UI", Arial, sans-serif;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 8px;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   HEADER
   ========================================================= */

.downloads-header {
    width: 100%;
    min-height: 46px;

    display: flex;
    align-items: center;

    padding: 0 15px;

    background: #f8fafc;

    border-bottom: 1px solid #e2e8f0;

    box-sizing: border-box;
}


.downloads-title-wrapper {
    display: flex;
    align-items: center;

    gap: 9px;

    min-width: 0;
}


.downloads-icon {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #1e3a8a;
    background: #eff6ff;

    border: 1px solid #dbeafe;
    border-radius: 6px;

    font-size: 13px;

    box-sizing: border-box;
}


.downloads-title {
    margin: 0;

    color: #1e3a8a;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}


/* =========================================================
   DOWNLOAD LIST
   ========================================================= */

.downloads-list {
    width: 100%;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;
}


/* =========================================================
   DOWNLOAD ITEM
   ========================================================= */

.download-item {
    width: 100%;
    min-height: 58px;

    display: flex;
    align-items: center;

    padding: 8px 15px;

    color: inherit;

    text-decoration: none;

    background: #ffffff;

    border-bottom: 1px solid #f1f5f9;

    box-sizing: border-box;

    transition:
        background-color 0.2s ease;
}


.download-item:last-child {
    border-bottom: 0;
}


.download-item:hover {
    background: #f8fafc;
}


/* =========================================================
   FILE ICON
   ========================================================= */

.download-icon {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-right: 12px;

    color: #1e3a8a;
    background: #eff6ff;

    border: 1px solid #dbeafe;
    border-radius: 6px;

    font-size: 14px;

    box-sizing: border-box;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


.download-item:hover .download-icon {
    color: #ffffff;

    background: #1e3a8a;

    border-color: #1e3a8a;
}


/* =========================================================
   CONTENT
   ========================================================= */

.download-content {
    flex: 1 1 auto;

    min-width: 0;

    display: flex;
    flex-direction: column;
    

    gap: 3px;
    text-align: left;

    box-sizing: border-box;
}


/* =========================================================
   TITLE
   ========================================================= */

.download-title {
    display: block;

    overflow: hidden;

    color: #1e3a8a;

    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.4;

    white-space: nowrap;
    text-overflow: ellipsis;

    transition: color 0.2s ease;
}


.download-item:hover .download-title {
    color: #dc2626;
}


/* =========================================================
   ACTION
   ========================================================= */

.download-action {
    display: block;

    color: #94a3b8;

    font-size: 9.5px;
    font-weight: 400;

    line-height: 1.2;
}


/* =========================================================
   ARROW
   ========================================================= */

.download-arrow {
    flex: 0 0 auto;

    margin-left: 10px;

    color: #94a3b8;

    font-size: 10px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.download-item:hover .download-arrow {
    color: #1e3a8a;

    transform: translateX(3px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 768px) {

    .downloads-header {
        padding: 0 12px;
    }


    .download-item {
        padding: 8px 12px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 576px) {

    .downloads-header {
        min-height: 44px;

        padding: 0 10px;
    }


    .downloads-icon {
        width: 27px;
        height: 27px;

        flex-basis: 27px;

        font-size: 11px;
    }


    .downloads-title {
        font-size: 12px;
    }


    .download-item {
        min-height: 55px;

        padding: 7px 10px;
    }


    .download-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        margin-right: 10px;

        font-size: 13px;
    }


    .download-title {
        font-size: 11.5px;
    }


    .download-action {
        font-size: 8.5px;
    }


    .download-arrow {
        font-size: 9px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 380px) {

    .download-item {
        padding-left: 8px;
        padding-right: 8px;
    }


    .download-icon {
        width: 32px;
        height: 32px;

        flex-basis: 32px;

        margin-right: 8px;
    }


    .download-title {
        font-size: 11px;
    }

}