/* ===========================
   RANKS PUBLIC MODULE
   (Autonomous, isolated)
=========================== */

.ranksPublic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Κάρτα */
.ranksPublic-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.ranksPublic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Φωτογραφία */
.ranksPublic-photo-wrapper {
    width: 100%;
    background: #f7f7f7;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ranksPublic-photo {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

/* Σώμα κάρτας */
.ranksPublic-card-body {
    padding: 20px;
    text-align: center;
}

.ranksPublic-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ranksPublic-hours {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
}

.ranksPublic-description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}
/* ===========================
   RANKS PUBLIC MODULE
   (Autonomous, isolated)
=========================== */

.ranksPublic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Κάρτα με GLASS EFFECT */
.ranksPublic-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.ranksPublic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.35);
}

/* Φωτογραφία — επίσης GLASS EFFECT */
.ranksPublic-photo-wrapper {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ranksPublic-photo {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

/* Κείμενο — επίσης GLASS EFFECT */
.ranksPublic-card-body {
    padding: 20px;
    text-align: center;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.ranksPublic-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.ranksPublic-hours {
    font-size: 15px;
    color: #ddd;
    margin-bottom: 15px;
}

.ranksPublic-description {
    font-size: 14px;
    color: #eee;
    line-height: 1.5;
}
