/*
-------------------------------------------------
Dropbox Scripture Gallery
Version: 1.0
-------------------------------------------------
*/

.dsg-gallery{
    width:100%;
    max-width:1400px;
    margin:40px auto;
    padding:20px;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

.dsg-generated{
    margin-bottom:30px;
    padding:12px 18px;
    background:#f5f5f5;
    border-left:4px solid #0073aa;
    font-size:14px;
}

.dsg-year{
    margin-bottom:60px;
}

.dsg-year-title{
    font-size:32px;
    color:#222;
    margin-bottom:25px;
    border-bottom:3px solid #0073aa;
    padding-bottom:10px;
}

.dsg-language{
    margin-bottom:45px;
}

.dsg-language-title{
    font-size:24px;
    color:#0073aa;
    margin-bottom:20px;
}

.dsg-image-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.dsg-image-card{
    background:#ffffff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.10);
    transition:.3s;
}

.dsg-image-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.dsg-image-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

.dsg-image-title{
    padding:15px;
    text-align:center;
    font-size:15px;
    font-weight:600;
}

.dsg-no-image{
    display:flex;
    align-items:center;
    justify-content:center;
    height:320px;
    background:#efefef;
    color:#777;
}

.dsg-error{
    padding:20px;
    background:#ffe9e9;
    border-left:5px solid red;
    color:#900;
    margin:20px 0;
}

/* Tablet */

@media(max-width:992px){

.dsg-image-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:600px){

.dsg-image-grid{

grid-template-columns:1fr;

}

.dsg-year-title{

font-size:26px;

}

.dsg-language-title{

font-size:20px;

}

.dsg-image-card img{

height:250px;

}

}