/*
Theme Name: Custom Main Theme
Theme URI: http://example.com
Description: Ana siteye özel tema
Version: 1.0
Author: Sen
*/

    <style>
    .sites-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
        margin-top: 20px;
    }

    .site-card {
        flex: 1 1 calc(33.333% - 20px);
        background: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .site-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
    }

    .site-card h3 {
        margin-top: 0;
        font-size: 1.25rem;
        color: #2c3e50;
    }

    .site-card p {
        margin: 8px 0;
        color: #444;
    }

    .site-card a {
        color: #0073aa;
        text-decoration: none;
    }

    .site-card a:hover {
        text-decoration: underline;
    }

    @media (max-width: 1024px) {
        .site-card {
            flex: 1 1 calc(50% - 20px);
        }
    }

    @media (max-width: 600px) {
        .site-card {
            flex: 1 1 100%;
        }
    }
    </style>

