.award-lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.award-lightbox-content {
    position: relative;
    margin: 60px auto;
    max-width: 800px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.award-lightbox-content img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
}

.award-lightbox-text h3 {
    margin: 15px 0 8px;
}

.award-lightbox-text p {
    color: #555;
}

.award-lightbox-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    transition: color 0.2s ease;
}

.award-lightbox-close:hover {
    color: #000;
}


.award-lightbox-prev,
.award-lightbox-next {
    position: absolute;
    top: 50%;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    background: rgba(255,255,255,0.7);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.award-lightbox-prev:hover,
.award-lightbox-next:hover {
    background: rgba(255,255,255,0.9);
}

.award-lightbox-prev {
    left: 10px;
}

.award-lightbox-next {
    right: 10px;
}




.awards-hero {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 1440px;
    margin: 0 auto;
}
.awards-hero h1 { font-size: 2.8em; margin-bottom: 10px; }
.awards-hero p { font-size: 1.2em; color: #555; }

.awards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1440px;
    margin: 0 auto 60px;
}
.award-item {
    flex: 1 1 calc(25% - 20px);
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}
.award-item:hover { transform: translateY(-6px); box-shadow: 0 12px 25px rgba(0,0,0,0.15); }
.award-item img { width: 100%; display: block; border-bottom: 1px solid #eee; }
.award-info { padding: 10px; text-align: center; font-weight: 600; }

.award-lightbox {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.award-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    color: #333;
}
.award-lightbox img { max-width: 100%; max-height: 70vh; border-radius: 8px; }
.award-lightbox-text { margin-top: 15px; color: #fff; }
.award-lightbox-close {
    position: absolute; top: -10px; right: -10px;
    font-size: 32px; background: #fff; border:none; border-radius:50%; width:40px; height:40px; cursor:pointer;
}
.award-lightbox-prev, .award-lightbox-next {
    position: absolute; top: 50%; font-size: 32px; font-weight: bold;
    color: #fff; background: rgba(0,0,0,0.5); border:none; border-radius:50%;
    width:50px; height:50px; cursor:pointer; transform: translateY(-50%);
}
.award-lightbox-prev { left: -60px; }
.award-lightbox-next { right: -60px; }
.award-lightbox-prev:hover, .award-lightbox-next:hover, .award-lightbox-close:hover { background: rgba(255,255,255,0.9); color:#333; }
@media (max-width: 1024px) { .award-item { flex: 1 1 calc(33.333% - 20px); } }
@media (max-width: 768px) { .award-item { flex: 1 1 calc(50% - 20px); } .award-lightbox-prev, .award-lightbox-next { display: none; } }
@media (max-width: 480px) { .award-item { flex: 1 1 100%; } }
