.yayin-container {
    padding: 0 20px;
    border-radius: 0;
}

.yayin-box {
    background-color: #fff;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.yayin-box:hover {
    transform: translateY(-5px);
}

.yayin-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.yayin-content strong {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: normal;
}

.yayin-content a {
    text-decoration: none;
    font-weight: normal;
}

.yayin-content a:hover {
    text-decoration: underline;
}

.cover-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

ul.yayin-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
}

ul.yayin-list li {
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    ul.yayin-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    ul.yayin-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    ul.yayin-list {
        grid-template-columns: 1fr;
    }
}


/* Başlıkların ve linklerin görselin altında düzgün görünmesi için */
.yayin-content {
    margin-top: 10px;
}

.yayin-content strong a {
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
}

.cover-image {
    width: 100%;
    height: auto;
    display: block;
}
