i/* assets/css/content.css (FULL - CLEAN)
   - Content/layout + grid only
   - WALAY footer ug pagination diri (para di mag double)
*/

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    overflow: hidden;
    min-width: 0; 
}

.content-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

/* --- GRID SYSTEM FIX --- */
.station-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    width: 100%;
    padding-bottom: 10px;
}

/* --- CARD STYLE --- */
.station-card {
    width: 100%;
    cursor: pointer;
    overflow: hidden;
}

/* --- IMAGE BOX FIX --- */
.img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 5px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* USA RA DAPAT KABUOK ANG IMG STYLE */
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
    display: block;
}

/* --- TEXT STYLE --- */
.st-title {
    font-size: 0.75rem;
    text-align: center;
    color: #1F2937;
    font-weight: 400;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* --- HOVER EFFECT: Change Text Color on Logo Hover --- */
.station-card:hover .st-title {
    color: #E50914;
    transition: color 0.2s ease;
}
