/* Badge Grid */
.edvdo-badge-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding: 10px 0;
}

.edvdo-badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 10px;
    border-radius: 8px;
    border: 1px solid #D0E2F7;
    background: rgba(208,226,247,0.20);
    transition: transform .15s ease;
}

.edvdo-badge-card.earned {
    cursor: pointer;
}

.edvdo-badge-card.earned:hover {
    transform: scale(1.05);
}

.edvdo-badge-card img {
    width: 150px;
    margin-bottom: 12px;
}

/* Popup Overlay */
.badge-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Popup Content */
.badge-popup-content {
    background: #fff;
    width: 320px;
    padding: 30px 25px 35px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 22px rgba(0,0,0,0.12);
}

/* Close Button */
.badge-popup-close {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 24px;
    cursor: pointer;
    color: #0E204E;
    font-weight: bold;
}

/* Badge Image */
.popup-badge-img {
    width: 150px;
    margin-bottom: 5px;
}

/* Title */
.popup-badge-title {
  
    margin-bottom: 14px;
}

/* Share Label */
.popup-share-label {
   
    margin-bottom: 12px;
}

/* Social Icons */
.popup-share-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.popup-share-icons img {
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: transform .15s ease;
}

.popup-share-icons img:hover {
    transform: scale(1.15);
}

.popup-badge-subtitle {
 
    margin-bottom: 5px;
}







@media screen and (min-width: 320px) and (max-width: 480px){


/* Badge Grid */
.edvdo-badge-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 10px 0;
}

.edvdo-badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 10px;
    border-radius: 8px;
    border: 1px solid #D0E2F7;
    background: rgba(208,226,247,0.20);
    transition: transform .15s ease;
}

.edvdo-badge-card.earned {
    cursor: pointer;
}

.edvdo-badge-card.earned:hover {
    transform: scale(1.05);
}

.edvdo-badge-card img {
    width: 150px;
    margin-bottom: 5px;
}

/* Popup Overlay */
.badge-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Popup Content */
.badge-popup-content {
    background: #fff;
    width: 320px;
    padding: 30px 25px 35px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 22px rgba(0,0,0,0.12);
}

/* Close Button */
.badge-popup-close {
    position: absolute;
    top: 15px;
    right: 18px;
   
    cursor: pointer;
    color: #0E204E;
    
}

/* Badge Image */
.popup-badge-img {
    width: 150px;
    margin-bottom: 15px;
}

/* Title */
.popup-badge-title {
   
    color: #0E204E;
    margin-bottom: 14px;
}



/* Social Icons */
.popup-share-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.popup-share-icons img {
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: transform .15s ease;
}

.popup-share-icons img:hover {
    transform: scale(1.15);
}




}













@media screen and (min-width: 481px) and (max-width: 1024px){


/* Badge Grid */
.edvdo-badge-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding: 10px 0;
}

.edvdo-badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 10px;
    border-radius: 8px;
    border: 1px solid #D0E2F7;
    background: rgba(208,226,247,0.20);
    transition: transform .15s ease;
}

.edvdo-badge-card.earned {
    cursor: pointer;
}

.edvdo-badge-card.earned:hover {
    transform: scale(1.05);
}

.edvdo-badge-card img {
    width: 150px;
    margin-bottom: 5px;
}

/* Popup Overlay */
.badge-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Popup Content */
.badge-popup-content {
    background: #fff;
    width: 320px;
    padding: 30px 25px 35px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 22px rgba(0,0,0,0.12);
}

/* Close Button */
.badge-popup-close {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 24px;
    cursor: pointer;
    color: #0E204E;
    font-weight: bold;
}

/* Badge Image */
.popup-badge-img {
    width: 150px;
    margin-bottom: 15px;
}

/* Title */
.popup-badge-title {
 
    color: #0E204E;
    margin-bottom: 14px;
}

/* Share Label */
.popup-share-label {
  
    color: #555;
    margin-bottom: 12px;
}

/* Social Icons */
.popup-share-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.popup-share-icons img {
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: transform .15s ease;
}

.popup-share-icons img:hover {
    transform: scale(1.15);
}




}







