/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* =============================================
   DSG: İlgili Yazılar Bloğu
   ============================================= */
.dsg-related-posts {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #0073aa;
    border-radius: 4px;
    padding: 16px 20px;
    margin: 32px 0 16px;
}

.dsg-related-posts h3 {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dsg-related-posts ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dsg-related-posts li {
    margin: 0;
}

.dsg-related-posts li a {
    display: inline-block;
    background: #fff;
    border: 1px solid #0073aa;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.875rem;
    color: #0073aa;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.dsg-related-posts li a:hover {
    background: #0073aa;
    color: #fff;
    text-decoration: none;
}

