/* ============================================
   Gıda TRENDLERİ - Ana Stil Dosyası
   yenialanya.com benzeri profesyonel haber portalı
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e30613;
    --primary-dark: #b8050f;
    --secondary: #1a1a2e;
    --accent: #f39c12;
    --text-dark: #1a1a1a;
    --text-medium: #444444;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--secondary);
    color: #fff;
    padding: 8px 0;
    font-size: 0.8rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right {
    display: flex;
    gap: 12px;
}

.top-bar-right a {
    color: #ccc;
    font-size: 0.85rem;
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--primary);
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background: var(--bg-white);
    padding: 15px 0;
    border-bottom: 3px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.logo h1 span {
    color: var(--primary);
    display: block;
    font-size: 1.4rem;
    letter-spacing: 3px;
    font-weight: 700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box form {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.search-box input {
    border: none;
    padding: 8px 15px;
    font-size: 0.9rem;
    width: 220px;
    outline: none;
}

.search-box button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--primary-dark);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.main-nav .container {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu li a {
    display: block;
    padding: 14px 18px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(0,0,0,0.15);
    border-bottom-color: #fff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 12px;
    cursor: pointer;
}

/* ============================================
   BREAKING NEWS TICKER
   ============================================ */
.breaking-ticker {
    background: var(--secondary);
    padding: 10px 0;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ticker-label {
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-scroll {
    display: flex;
    animation: ticker-scroll 60s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    color: #ddd;
    font-size: 0.85rem;
    padding: 0 30px;
    white-space: nowrap;
}

.ticker-item strong {
    color: var(--primary);
    margin-right: 8px;
}

.ticker-item:hover {
    color: #fff;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    padding: 25px 0;
}

/* ============================================
   FEATURED SLIDER (Manşet Alanı)
   ============================================ */
.featured-section {
    margin-bottom: 30px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.featured-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover img {
    transform: scale(1.05);
}

.featured-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 30px 15px 15px;
}

.featured-card .card-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.featured-card .card-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.featured-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.featured-card.large img {
    height: 100%;
    min-height: 520px;
}

.featured-card.large .card-title {
    font-size: 1.5rem;
}

/* ============================================
   NEWS SLIDER (Haber Slider)
   ============================================ */
.news-slider-section {
    margin-bottom: 30px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    position: relative;
}

.slider-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.slider-item .slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 40px 30px 30px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.slider-item .slider-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.slider-item .slider-title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
}

.slider-item .slider-summary {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary);
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header .view-all {
    margin-left: auto;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.section-header .view-all:hover {
    text-decoration: underline;
}

/* ============================================
   NEWS CARDS - Category Section
   ============================================ */
.category-section {
    margin-bottom: 40px;
}

.category-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.category-news-grid .main-news {
    grid-column: span 1;
}

.category-news-grid .side-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.news-card .card-image {
    position: relative;
    overflow: hidden;
}

.news-card .card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .card-image img {
    transform: scale(1.05);
}

.news-card .card-body {
    padding: 15px;
}

.news-card .card-category {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
}

.news-card .card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .card-title:hover {
    color: var(--primary);
}

.news-card .card-summary {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.news-card .card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    color: var(--text-light);
}

.news-card .card-meta i {
    margin-right: 4px;
}

/* Small news card (yan haberler) */
.news-card-sm {
    display: flex;
    gap: 12px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card-sm:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(3px);
}

.news-card-sm .card-image {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.news-card-sm .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-sm .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card-sm .card-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-sm .card-title:hover {
    color: var(--primary);
}

.news-card-sm .card-meta {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* ============================================
   3-COLUMN NEWS GRID
   ============================================ */
.news-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.news-grid-3 .news-card .card-image img {
    height: 180px;
}

/* ============================================
   LARGE NEWS SECTION (Büyük haber + 2 küçük)
   ============================================ */
.large-news-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.large-news-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.large-news-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.large-news-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 40px 25px 25px;
}

.large-news-card .card-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.large-news-card .card-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
}

.large-news-card .card-summary {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.side-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ============================================
   AD BANNER
   ============================================ */
.ad-banner {
    margin: 25px 0;
    text-align: center;
    background: var(--bg-white);
    padding: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.ad-banner img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: var(--radius-sm);
}

/* ============================================
   TABS (İhale, İcra, vb.)
   ============================================ */
.tabs-section {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.tabs-nav {
    display: flex;
    gap: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.tabs-nav button {
    padding: 10px 20px;
    border: none;
    background: none;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
}

.tabs-nav button.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tabs-nav button:hover {
    color: var(--primary);
}

.tab-content {
    display: none;
    padding: 10px 0;
}

.tab-content.active {
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--secondary);
    color: #ccc;
    margin-top: 40px;
}

.footer-top {
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-col h3 span {
    color: var(--primary);
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-col .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.footer-col .contact-info li i {
    color: var(--primary);
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #888;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .featured-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .featured-card.large img {
        min-height: 300px;
    }
    
    .news-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .large-news-section {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .logo h1 span {
        font-size: 1rem;
    }
    
    .search-box {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        z-index: 999;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-card.large {
        grid-column: span 1;
    }
    
    .featured-card.large img {
        min-height: 250px;
    }
    
    .category-news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .slider-item img {
        height: 250px;
    }
    
    .slider-item .slider-title {
        font-size: 1.1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ticker-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .featured-card img {
        height: 200px;
    }
    
    .news-card .card-image img {
        height: 160px;
    }
    
    .section-header h2 {
        font-size: 1.1rem;
    }
}

/* ============================================
   DETAIL PAGE
   ============================================ */
.article-detail {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.article-detail .article-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.article-detail h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.article-detail .article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.article-detail .article-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.article-detail .article-image {
    margin-bottom: 25px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article-detail .article-image img {
    width: 100%;
    height: auto;
}

.article-detail .article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.article-detail .article-content p {
    margin-bottom: 15px;
}

/* Related News */
.related-news {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.related-news h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* ============================================
   CATEGORY PAGE
   ============================================ */
.category-page-header {
    background: var(--primary);
    color: #fff;
    padding: 25px 0;
    margin-bottom: 30px;
}

.category-page-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
}

.category-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.pagination a {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.pagination a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination span.current {
    background: var(--primary);
    color: #fff;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.news-card, .news-card-sm {
    animation: fadeIn 0.5s ease forwards;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.scroll-top.visible {
    display: flex;
}

/* Video Section */
.video-section {
    margin-top: 15px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.video-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.video-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.video-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background: #000;
}

.video-item h4 {
    padding: 12px 15px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-item video {
        height: 200px;
    }
}

/* Royal Drink Logo in Header */
.header-logo-img {
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}
