.seo-intro {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
}

.seo-intro h1 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #111827;
    font-weight: 700;
}

.seo-intro p {
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
}

.seo-intro strong {
    color: #111;
}

/* Grid Container index sayfası listenen postlar için */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.grid-item {
    display: block;
    background-color: white;
    padding: 4px;
    border: 0;
    border-radius: 0;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    min-width: 0;
    overflow: hidden;
}

.grid-image {
    width: 100%;
    height:220px; border-radius:4px;;
    display: block;
    margin: 0 auto;
    transition: opacity 0.28s ease, filter 0.28s ease, transform 0.28s ease;
}

.grid-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}



.grid-title {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #145AA4;
    font-family: 'Roboto', sans-serif;
    transition: color 0.3s ease;
    overflow-wrap: break-word;
    word-break: break-word;
}

.grid-item:hover .grid-title {
    color: #7F0C0E;
}

/* Sayfalama Stili */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 5px;
}

.pagination a {
    color: #555;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.pagination a.active {
    background-color: royalblue;
    color: white;
    border: 1px solid royalblue;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
    color: darkred;
}

.pagination-button {
    background-color: darkgrey;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination-button:hover {
    background-color: darkgreen;
}

/* Responsive Tasarım */
@media (max-width: 1100px) {
    .grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .pagination {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3px;
    }

    .pagination a {
        margin: 2px;
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .grid-image {
    width: 100%;
    height:auto; border-top-left-radius:5px;border-top-right-radius:5px;
        }
}

.full-width-ad {
    width: 100%;
    background-color: #dedede;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
}