/* ==========================================================
   GranDEM Desktop Download
========================================================== */

.container{

    width:95%;
    max-width:1200px;
    margin:50px auto;

}

/* ==========================================================
   Hero
========================================================== */

.download-hero{

    height:300px;

    background:linear-gradient(
        135deg,
        #0b3d91,
        #1565c0
    );

    border-radius:0 0 30px 30px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:#fff;

}

.download-overlay{

    width:90%;
    max-width:900px;

}

.download-overlay h1{

    font-size:42px;

    margin-bottom:20px;

    font-weight:700;

}

.download-overlay p{

    font-size:18px;

    opacity:.95;

    line-height:1.8;

}

/* ==========================================================
   Cards
========================================================== */

.latest-download-card,
.previous-release-card,
.download-info-card,
.download-help-card{

    background:#fff;

    border-radius:16px;

    padding:35px;

    margin-bottom:35px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

/* ==========================================================
   Latest Release
========================================================== */

.latest-download-card{

    display:flex;

    align-items:flex-start;

    gap:30px;

}

.download-icon{

    width:90px;
    height:90px;

    background:#eaf3ff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    flex-shrink:0;

}

.latest-download-content{

    flex:1;

}

.latest-download-content h2{

    margin-bottom:10px;

    color:#0b3d91;

}

.latest-download-content p{

    color:#555;

    margin-bottom:15px;

}

.download-meta{

    line-height:2;

    color:#444;

    margin-bottom:20px;

}

.download-meta strong{

    color:#0b3d91;

}

/* ==========================================================
   Release Notes
========================================================== */

.release-notes{

    background:#f8fbff;

    border-left:4px solid #1565c0;

    padding:20px;

    border-radius:10px;

    margin-bottom:25px;

}

.release-notes h4{

    margin-bottom:10px;

    color:#0b3d91;

}

.release-notes p{

    color:#555;

    line-height:1.8;

}

/* ==========================================================
   Buttons
========================================================== */

.download-btn{

    display:inline-block;

    padding:14px 34px;

    background:#1565c0;

    color:#fff;

    text-decoration:none;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.download-btn:hover{

    background:#0d47a1;

    transform:translateY(-2px);

}

.btn-sm{

    display:inline-block;

    padding:8px 18px;

    background:#1565c0;

    color:#fff !important;

    text-decoration:none;

    border-radius:6px;

    font-size:14px;

    transition:.3s;

}

.btn-sm:hover{

    background:#0d47a1;

}

/* ==========================================================
   Table
========================================================== */

.download-table{

    width:100%;

    border-collapse:collapse;

    margin-top:25px;

}

.download-table thead{

    background:#0b3d91;

    color:#fff;

}

.download-table th{

    padding:16px;

    text-align:left;

}

.download-table td{

    padding:15px;

    border-bottom:1px solid #ececec;

    color:#444;

}

.download-table tbody tr:hover{

    background:#f7fbff;

}

/* ==========================================================
   Information Card
========================================================== */

.download-info-card h2,
.previous-release-card h2,
.download-help-card h2{

    color:#0b3d91;

    margin-bottom:20px;

}

.download-info-card ul{

    padding-left:20px;

}

.download-info-card li{

    margin-bottom:12px;

    color:#444;

    line-height:1.8;

}

/* ==========================================================
   Help Card
========================================================== */

.download-help-card{

    text-align:center;

}

.download-help-card p{

    color:#666;

    margin-bottom:25px;

    line-height:1.8;

}

/* ==========================================================
   Responsive
========================================================== */

@media(max-width:768px){

    .latest-download-card{

        flex-direction:column;

        text-align:center;

    }

    .download-icon{

        margin:auto;

    }

    .download-overlay h1{

        font-size:30px;

    }

    .download-table{

        display:block;

        overflow-x:auto;

    }

}