
.cim {
    color: #ff6b35;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff6b35;
    position: relative;
}

.cim a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cim a:hover {
    color: #e55a2b;
}

/* Narancs pont ikon */
.cim::before {
    content: "●";
    color: #ff6b35;
    font-size: 16px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Dátum és forrás információ */
.hir-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

/* Kép stílus */
.mjobb30 {
    float: left;
    margin: 0 30px 20px 0;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mjobb30:hover {
    transform: scale(1.02);
}

/* Bevezető szöveg */
.hir-bevezeto {
    font-size: 22px;
    font-weight: 500;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
}

/* Fő szöveg */
.hir-szoveg {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 30px;
}

/* Bekezdések */
.hir-szoveg p {
    margin-bottom: 15px;
}

/* Listák stílusa */
.hir-szoveg ul, .hir-szoveg ol {
    margin: 15px 0;
    padding-left: 30px;
}

.hir-szoveg li {
    margin-bottom: 8px;
}

/* Táblázatok stílusa (ha vannak a szövegben) */
.hir-szoveg table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hir-szoveg table th,
.hir-szoveg table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.hir-szoveg table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.hir-szoveg table tr:hover {
    background-color: #f5f5f5;
}

/* Linkek stílusa */
.hir-szoveg a {
    color: #ff6b35;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.hir-szoveg a:hover {
    border-bottom: 1px solid #ff6b35;
}

/* Idézetek */
.hir-szoveg blockquote {
    border-left: 4px solid #ff6b35;
    margin: 20px 0;
    padding: 15px 20px;
    background-color: #f9f9f9;
    font-style: italic;
}

/* Mobilbarát design */
@media (max-width: 768px) {
    .hir-container {
        padding: 15px;
    }
    
    .cim {
        font-size: 24px;
    }
    
    .mjobb30 {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
        max-width: 100%;
    }
    
    .hir-bevezeto {
        font-size: 16px;
    }
    
    .hir-szoveg {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hir-container {
        padding: 10px;
    }
    
    .cim {
        font-size: 20px;
    }
    
    .hir-bevezeto {
        font-size: 15px;
    }
    
    .hir-szoveg {
        font-size: 14px;
    }
}

/* Clearfix segédosztály */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Animációk */
.hir-container {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print stílus */
@media print {
    .hir-container {
        max-width: none;
        padding: 0;
    }
    
    .mjobb30 {
        float: left;
        max-width: 200px;
    }
    
    .cim {
        color: #000;
        border-bottom-color: #000;
    }
    
    .hir-szoveg a {
        color: #000;
        text-decoration: underline;
    }
}