/* Kurs kartları */
.course-section {
    padding: 5px 10px 30px 10px;
    border-radius: 16px;
}

.section-heading {
    font-size: 30px;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 25px;
    text-align: left;
}

.course-card {
    border: none;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.course-title {
    font-size: 20px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.course-title i {
    font-size: 22px;
    margin-right: 8px;
    color: #1d4ed8;
}

.course-body {
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
}

.img-side img {
    width: 100%;
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.img-side img:hover {
    transform: scale(1.03);
}

/* Show more yazısı - alt satıra, normal font, özel renk */
.show_more {
    display: block;          /* alt satıra geçer */
    margin-top: 5px;         /* üstten boşluk */
    font-size: 0.9rem;      /* biraz küçük yazı */
    font-weight: normal;     /* bold olmasın */
    color: #1a6e6e !important;          /* istediğin renk */
    cursor: pointer;
    text-decoration: none;
    text-align: right;
}

.show_more:hover {
    text-decoration: underline;
}

/* Mobil uyumlu */
@media (max-width: 576px) {
    .show_more {
        text-align: left;    /* alt satırda sola yasla */
    }
}

