.eu-blog {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    min-height: 100vh;
}

/* Başlık Alanı */
.romagem-title {
    font-weight: 800;
    color: #2c3e50;
    letter-spacing: -1px;
}
.romagem-title span {
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.title-line {
    width: 60px;
    height: 4px;
    background: #6a11cb;
    border-radius: 2px;
}

.news-card-v2 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.news-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 17, 203, 0.15);
}

.card-img-wrap {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(106, 17, 203, 0.9);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.card-content {
    padding: 15px;
}

.c-date {
    font-size: 11px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.c-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.c-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: 0.2s;
}

.c-title a:hover { color: #6a11cb; }

.c-desc {
    font-size: 13px;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Metni 3 satırda keser */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.c-link {
    font-size: 12px;
    font-weight: 700;
    color: #2575fc;
    text-decoration: none;
    text-transform: uppercase;
}

/* Sidebar Renklendirme */
.eu-box-gradient {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    padding: 10px;
}

.white-box {
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

.text-colorful {
    color: #6a11cb;
    font-weight: 700;
}

.latest-item {
    list-style: none;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
}

.latest-link {
    font-size: 13px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.latest-link:hover { color: #2575fc; }

.latest-date { font-size: 10px; color: #bbb; }

.side-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.eu-box {
  text-align: center;
}

.project-code {
    text-align: left;
  font-size: 14px;
  color: #555;
}

.side-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.side-search {
  border-radius: 30px;
  padding: 10px 15px;
}

.latest-news {
  list-style: none;
  padding: 0;
  margin: 0;
}

.latest-news li {
  margin-bottom: 12px;
}

.latest-news a {
  font-size: 14px;
  color: #2c3e50;
  text-decoration: none;
  display: block;
}

.latest-news span {
  font-size: 11px;
  color: #999;
}

.button-container-mini {
    padding-top: 10px;
    display: flex;
    gap: 10px;
}

.btn-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* İkon ve yazı arasındaki boşluk */
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1;
}

/* Search Butonu - Parlak Modern Mavi */
.btn-search-mini {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

.btn-search-mini:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

/* Clear Butonu - Soft ve Zarif Gri */
.btn-clear-mini {
    background-color: #f1f3f5;
    color: #495057;
    border: 1px solid #e9ecef;
}

.btn-clear-mini:hover {
    background-color: #e9ecef;
    color: #212529;
    border-color: #dee2e6;
    transform: translateY(-1px);
}

/* İkon Boyutu Ayarı */
.btn-mini i {
    font-size: 12px; /* Yazıdan hafifçe daha küçük durması daha şıktır */
    opacity: 0.9;
}