/* Mobile-first base styles */
.ph-card-wrapper-f76dc25c {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background-color: #050505; 
}

.ph-logo-card-f76dc25c {
    width: 160px;
    height: 160px;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3); /* #D4AF37 with opacity */
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(212, 175, 55, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    padding: 20px;
    text-decoration: none; /* In case it's a link */
}

/* Soft glow effect */
.ph-logo-card-f76dc25c::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 15px rgba(245, 217, 139, 0.1); /* #F5D98B soft inner glow */
    pointer-events: none;
}

.ph-logo-card-f76dc25c:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(212, 175, 55, 0.15);
}

.ph-logo-card-f76dc25c img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
    transition: transform 0.4s ease;
}

.ph-logo-card-f76dc25c:hover img {
    transform: scale(1.05);
}

/* Tablet and Desktop adjustments */
@media (min-width: 768px) {
    .ph-logo-card-f76dc25c {
        width: 200px;
        height: 200px;
    }
}
