.content {
    display: flex;
    flex-direction: column; /* kartlar alt alta kalsın */
    align-items: center; /* yatay ortala */
}

.school-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border: 2px solid #ff3b3b;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 4px 12px rgba(255,0,0,0.15);
    font-family: 'Helvetica', sans-serif;
    color: #000;
    max-width: 900px; /* Daha geniş */
    min-width: 900px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 15px 0;
}

.school-rank {
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    background-color: #d40000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.school-details {
    flex: 1;
}

.school-name {
    font-size: 1.8em;
    font-weight: 700;
    color: #d40000;
    margin-bottom: 10px;
}

.school-info p {
    margin: 5px 0;
    font-size: 1em;
    line-height: 1.4;
}

.school-info .label {
    font-weight: 600;
    color: #ff0000;
}

.school-info a {
    color: #d40000;
    text-decoration: none;
}

.school-info a:hover {
    text-decoration: underline;
}

/* Hover animasyonu: hafif border ve background geçişi */
.school-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, rgba(255,0,0,0.05), rgba(255,0,0,0.05));
    pointer-events: none;
    transition: all 0.4s ease;
}

.school-card:hover::before {
    border-color: #ff0000;
    background: linear-gradient(45deg, rgba(255,0,0,0.1), rgba(255,0,0,0.05));
}

/* Responsive */
@media (max-width: 600px) {
    .school-card {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
        padding: 15px;
    }

    .school-rank {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .school-name {
        font-size: 1.5em;
    }
}


/* intro-card bölümü - sade ve klasik */
.intro-card {
    background-color: #f8d7da; /* yumuşak kırmızı ton */
    color: #ff0000; /* koyu gri yazı, klasik görünüm */
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #f5c2c7; /* hafif çerçeve */
}

.intro-card .intro-title {
    font-size: 1.5em;
    margin-bottom: 8px;
    font-weight: 600; /* daha klasik ağırlık */
}

.intro-card .intro-description {
    font-size: 1em;
    line-height: 1.4;
}

