.title.h1{
    font-size:32px !important;
}
.social-tags {
    margin-top: 20px;
    gap: 10px;
}
.author-image{
    padding:20px;
    border:1px solid #f1f1f1;
    border-radius: 12px;
}

.social-tags .name {
    margin-right: 15px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.social-tags ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.social-tags li:before{
    display: none !important;
}
.social-tags li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-size: 15px;
}

.social-tags li a:hover {
    color: #fff;
}

/* Platform-specific hover colors */
.facebook-soc-button:hover {
    background-color: #3b5998;
}

.twitter-soc-button:hover {
    background-color: #000;
}

.instagram-soc-button:hover {
    background-color: #e1306c;
}

.youtube-soc-button:hover {
    background-color: #ff0000;
}

.linkedin-soc-button:hover {
    background-color: #0077b5;
}

/* SVG iconlar için özel renk */
.social-tags svg path {
    transition: fill 0.3s ease;
}

.twitter-soc-button:hover svg path {
    fill: #fff !important;
}