.article-meta {
    margin-bottom: 5px;
    font-size: 13px;
    color: #666;
}

.article-meta-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
	font-size: 14px;
}

.article-author {
    color: #000;
}

.article-date {
    color: #666;
    white-space: nowrap;
}

.article-image {
    margin-bottom: 10px;
}

.article-image-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 4px;
    font-size: 13px;
    color: #666;
}

.image-caption {
    margin-right: auto;
}

.image-author {
    margin-left: auto;
}

.article-source {
    font-size: 10px;
    color: #666;
    margin-top: 20px;
    text-align: left;
}

.article_main_column .article-image-main {
    display: block;
    max-width: 100%;
    height: auto;
}

.single-article-image {
    max-width: 100%;
    margin: 0 auto;
}

.content-separator {
	margin: 20px 0;
}

.article-content-image,
figure.article-content-image {
    margin: 20px 0;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.article-content-image img,
.article-content-image-main {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: inline-block;
}

figcaption { 
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 8px;
}

.article-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 5px;
    font-weight: bold;
    padding: 10px 0;
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    width: 100%;
    overflow-x: hidden;
}

.article-content h2 {
	margin: 0;
}

.article-content::after {
    content: "";
    display: table;
    clear: both;
}

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

.article-content p:last-child {
    margin-bottom: 0;
}

.article-content img {
    width: 100%;
    height: auto;
    margin: 0;
}

.article-footer {
    margin-top: 5px;
    padding-top: 5px;
}

.article-tags,
.article-event {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.article-tags a,
.article-event a {
    color: #0066cc;
    text-decoration: none;
}

.article-tags a:hover {
    color: #333;
}

.article-event a:hover {
    text-decoration: underline;
}

.article-gallery-button {
    margin: 20px 0;
    text-align: center;
}

.btn-see-photos {
    display: inline-block;
    background-color: var(--button-color, #DB3C00);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
    min-width: 200px;
}

.article-gallery-button a {
    font-size: 24px;
}

.btn-see-photos:hover {
    background-color: #C13940;
}

.article-gallery-footer {
    margin-top: 20px;
    background-color: var(--button-color, #DB3C00);
    padding: 30px;
    border-radius: 4px;
}

.gallery-footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

.gallery-footer-image {
    flex: 0 0 auto;
    max-width: 150px;
    margin-right: 20px;
}

.gallery-footer-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.gallery-footer-text {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
	margin-left: 10px;
}

.company-module {
    margin: 15px 0 0 0;
    padding: 10px;
    background-color: var(--featured, #eaf3ff);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    clear: both;
}

.company-module-header {
    color: var(--primary-color, #2B73D4);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(43, 115, 212, 0.2);
    text-align: center;
}

.company-module-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing, 20px);
    margin-bottom: 15px;
}

.company-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.company-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.company-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.company-no-logo {
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
}

.company-details {
    text-align: center;
    margin-bottom: 10px;
}

.company-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #333;
}

.company-city {
    font-size: 13px;
    color: #666;
}

.company-link {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-color, #2B73D4);
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.company-link:hover {
    background-color: #1e5dab;
    color: #fff;
}

.company-module-footer {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 5px;
}

.company-module-more {
    display: inline-block;
    padding: 6px 15px;
    background-color: #fff;
    color: var(--primary-color, #2B73D4);
    border: 1px solid var(--primary-color, #2B73D4);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.company-module-more:hover {
    background-color: var(--primary-color, #2B73D4);
    color: #fff;
}

.article-comments {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.article-comments-title {
    font-size: 24px;
    margin-bottom: 5px;
}

.article-comments-list {
    margin-bottom: 30px;
}

.article-comment {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.article-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.article-comment-author {
    font-weight: 500;
    color: #333;
}

.article-comment-date {
    font-size: 13px;
    color: #666;
}

.article-comment-content {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 10px;
}

.article-comment-actions {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 14px;
}

.comment-quote {
    background-color: #f8f9fa;
    border-left: 4px solid #6c757d;
    padding: 10px;
    margin: 10px 0;
    font-style: italic;
    color: #666;
}

.votes-positive {
    color: #28a745;
    font-weight: 500;
}

.votes-negative {
    color: #dc3545;
    font-weight: 500;
}

.vote-icon {
    stroke: #666;
}

.article-comment-vote:hover .vote-icon {
    stroke: #333;
}

.article-comment-vote {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.article-comment-vote svg {
    width: 22px;
    height: 22px;
}

.article-comment-reply {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #666;
}

.article-comment-reply svg {
    width: 16px;
    height: 16px;
}

.article-comment-reply:hover {
    color: #333;
}

.article-comment-form {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 4px;
}

.article-comment-form-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.article-comment-form-group {
    margin-bottom: 15px;
}

.article-comment-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.article-comment-form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

.article-comment-form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

textarea.article-comment-form-control {
    min-height: 100px;
    resize: vertical;
}

.article-comment-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 15px;
}

.article-comment-form-checkbox input {
    margin-top: 4px;
}

.article-comment-form-checkbox label {
    font-size: 14px;
    color: #666;
}

.article-comment-form-info {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.article-comment-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.article-comment-submit:hover {
    background: #255a95;
}

.article-poll {
    float: right;
    width: 40%;
    margin: 0 0 20px 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.article-poll-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--h-color);
    text-align: center;
}

.article-poll-form {
    margin-bottom: 10px;
}

.article-poll-options {
    margin-bottom: 15px;
}

.article-poll-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.article-poll-option input[type="radio"] {
    margin-top: 4px;
    margin-right: 10px;
}

.article-poll-option label {
    flex: 1;
    font-size: 14px;
}

.article-poll-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.article-poll-submit:hover {
    background-color: #2160b3;
}

.article-poll-results {
    margin-top: 15px;
}

.article-poll-result {
    margin-bottom: 12px;
}

.article-poll-result-text {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 5px;
}

.article-poll-result-text span:last-child {
    font-weight: 500;
}

.article-poll-result-bar {
    height: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.article-poll-result-bar-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.article-poll-total {
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    margin-top: 15px;
}

.article-poll-message {
    padding: 10px;
    font-size: 14px;
}

.article_sidebar_column {
    padding: 0;
}

@media (max-width: 1024px) {
    .article-poll {
        width: 100%;
        float: none;
        margin: 0 0 20px 0;
    }
    
    .article_sidebar_section {
        margin-bottom: 20px;
    }
    
    .article-content {
        width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 767px) {
    .company-module-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-module-header {
        font-size: 16px;
    }
    
    .company-logo {
        width: 70px;
        height: 70px;
    }
    
    .company-name {
        font-size: 14px;
    }
    
    .article-intro {
        font-size: 16px;
    }
    
    .article-content {
        font-size: 15px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 4px;
    }
    
    .article-comments-title {
        font-size: 20px;
    }
    
    .article-comment-header {
        flex-direction: column;
        gap: 4px;
    }
    
    .article-comment-actions {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .article-comment-form {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .company-module-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 3px;
        overflow: hidden;
    }
    
.company-item {
        padding: 5px 2px;
        min-width: 0;
        overflow: hidden;
    }
    
    .company-logo-link,
    .company-name-link {
        display: block;
        overflow: hidden;
    }
    
    .company-logo img {
        max-width: 100%;
        height: auto;
    }
    
    .company-logo {
        width: 40px;
        height: 40px;
        margin-bottom: 3px;
    }
    
    .company-details {
        margin-bottom: 3px;
    }
    
    .company-name {
        font-size: 11px;
        line-height: 1.2;
    }
    
    .company-module-more {
        padding: 6px 15px;
        font-size: 13px;
    }

    .article-footer {
        font-size: 12px;
    }
    
    .company-module {
        padding: 8px 5px;
    }
    
    .company-module-header {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

@media (max-width: 380px) {
    .article-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.article-updates {
    margin-top: 30px;
    padding-top: 10px;
    font-size: 18px;
    color: #333; 
    line-height: 1.8;
}

.article-updates-label {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.article-update {
    margin-bottom: 15px;
    line-height: 1.8;
    padding-left: 0;
}

.article-update:last-child {
    margin-bottom: 0;
}

.article-update-date {
    font-weight: 500;
    color: #666;
    margin-bottom: 4px;
}

.article-update-content {
    color: #333;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
}

.article-update:last-child .article-update-content {
    border-bottom: none;
}

@media (max-width: 767px) {
    .article-updates {
        font-size: 15px;
        margin-top: 25px;
    }
    
    .article-updates-label {
        font-size: 15px;
    }
    
    .article-update {
        margin-bottom: 12px;
    }
    
    .article-update-date {
        margin-bottom: 3px;
    }
}

.article-report-info {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(to right, #1B365D, #2E4A78);
    border-radius: 8px;
    padding: 18px 20px;
    margin: 15px 0 25px 0;
    box-shadow: 0 4px 15px rgba(27, 54, 93, 0.25);
    position: relative;
    overflow: hidden;
}

.article-report-info::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.report-icon {
    flex-shrink: 0;
    margin-right: 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
}

.report-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    text-align: center;
}

.report-text {
    font-size: 17px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.report-button-container {
    text-align: center;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 64, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(214, 64, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(214, 64, 69, 0);
    }
}

.report-link {
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background-color: #D64045;
    padding: 6px 15px;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 0 0 0 0 rgba(214, 64, 69, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: buttonPulse 2s infinite;
}

.report-link:hover {
    background-color: #C13940;
    transform: translateY(-2px);
    animation: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.report-inline-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.report-inline-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .article-report-info {
        padding: 15px;
        margin: 12px 0 20px 0;
    }
    
    .report-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    
    .report-text {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .report-link {
        padding: 5px 12px;
        font-size: 14px;
    }
}

/* ----- REKOMENDOWANE ARTYKUŁY ----- */
.recommended-articles-block {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
}
.recommended-articles-block .container {
    max-width: 100%;
    padding: 0;
}
.recommended-articles-header {
    text-align: center;
    margin-bottom: 10px;
}
.recommended-articles-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B365D;
    margin: 0 0 8px 0;
}
.recommended-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.recommended-article-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.recommended-article-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.recommended-article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.recommended-article-image {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

@supports not (aspect-ratio: 3/2) {
    .recommended-article-image {
        height: 200px;
    }
}
.recommended-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}
.recommended-article-item:hover .recommended-article-image img {
    transform: scale(1.05);
}
.recommended-article-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    color: #6c757d;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
}
.recommended-article-content {
    padding: 10px 15px 15px;
}
.recommended-article-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.recommended-article-link:hover .recommended-article-title {
    color: #D64045;
}

@media (max-width: 1024px) {
    .recommended-articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .recommended-articles-header h3 {
        font-size: 1.5rem;
    }
}
@media (max-width: 576px) {
    .recommended-articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .recommended-article-content {
        padding: 12px;
    }
    
    .recommended-article-title {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .recommended-articles-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* === UKRYTY FORMULARZ KOMENTARZA === */
.article-comment-form-wrapper {
    margin-top: 1px;
}

.article-comment-form-toggle {
    background: #005C99;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 54px;
    width: auto;
    justify-content: center;
}

.article-comment-form-toggle:hover {
    background: #218838;
    transform: none;
    animation: none;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.article-comment-form-toggle svg {
    width: 24px;
    height: 24px;
}

.article-comment-form {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.article-comment-form.active {
    max-height: 1000px;
    opacity: 1;
    margin-top: 20px;
}

.article-comment-form.active .article-comment-form-group,
.article-comment-form.active .article-comment-form-checkbox,
.article-comment-form.active .article-comment-verification,
.article-comment-form.active .article-comment-submit,
.article-comment-form.active .article-comment-form-info {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.article-comment-form.active .article-comment-form-group:nth-child(1) { animation-delay: 0.1s; }
.article-comment-form.active .article-comment-form-group:nth-child(2) { animation-delay: 0.2s; }
.article-comment-form.active .article-comment-form-checkbox { animation-delay: 0.3s; }
.article-comment-form.active .article-comment-verification { animation-delay: 0.4s; }
.article-comment-form.active .article-comment-submit { animation-delay: 0.5s; }
.article-comment-form.active .article-comment-form-info { animation-delay: 0.6s; }

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

@media (max-width: 767px) {
.article-meta-row {
	font-size: 11px;
}
.article-image-meta {
    padding-top: 2px;
    font-size: 11px;
}

.gsc-input-box 
	{	
	padding-top: 0px !important;
	}
    .article-comment-form-toggle {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    .article-comment-form-toggle svg {
        width: 20px;
        height: 20px;
    }
    
    .article-comment-form.active {
        max-height: none !important;
        height: auto !important;
        opacity: 1 !important;
        overflow: visible !important;
    }
    
    .article-comment-form.active .article-comment-form-group,
    .article-comment-form.active .article-comment-form-checkbox,
    .article-comment-form.active .article-comment-verification,
    .article-comment-form.active .article-comment-submit,
    .article-comment-form.active .article-comment-form-info {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
        visibility: visible !important;
    }
}

@media (max-width: 480px) {
    .article-comment-form-toggle {
        width: 100%;
        text-align: center;
        margin: 20px 0;
    }
    
    .article-comment-form.active {
        padding: 15px 10px;
        margin-top: 15px;
    }
    
    .article-comment-form-control {
        font-size: 16px;
    }
}

.article-box {
    display: block;
    background-color: #ffeb3b;
    border: 1px solid #f9d71c;
    border-radius: 6px;
    padding: 16px 24px;
    margin: 20px 0;
    width: 100%;
	position: relative;
    padding-top: 30px;
}

.article-box::before {
    content: "Zobacz więcej";
    position: absolute;
    top: 8px;
    left: 24px;
    font-size: 12px;
    font-weight: normal;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-box_link {
    text-decoration: none;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-box_title {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.4;
    color: #000000;
}

.article-box_title::before {
    content: "▶";
    margin-right: 10px;
    font-size: 18px;
    color: #333;
}

@media (max-width: 768px) {
    .article-box {
padding: 14px 20px;
padding-top: 28px;
    }
    
    .article-box_title {
        font-size: 20px;
    }
    
    .article-box_title::before {
        font-size: 16px;
        margin-right: 8px;
    }
	
	.article-box::before {
    font-size: 11px;
    top: 6px;
    left: 20px;
}
}

.full-width-section {
    width: 100%;
    margin-top: 40px;
    padding-top: 30px;
    clear: both;
}

.full-width-section .recommended-articles-block {
    max-width: 100%;
    width: 100%;
}

.full-width-section .recommended-articles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
}

@media (max-width: 1200px) {
    .full-width-section .recommended-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .full-width-section .recommended-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .full-width-section .recommended-articles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.article_sidebar_section {
    padding: 0;
}

.sidebar-latest-articles {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.sidebar-section-title {
    font-size: 22px;
    font-weight: 600;
    color: #1B365D;
    margin: 0;
    padding: 0 20px 10px 20px;
    border-bottom: 2px solid #1B365D;
}

.sidebar-section-title-link {
    color: inherit;
    text-decoration: none;
}

.sidebar-section-title-link:hover {
    color: var(--primary-color);
}

.sidebar-articles-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.sidebar-article-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.sidebar-article-item:first-child {
    padding-top: 20px;
}

.sidebar-article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-article-link {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.sidebar-article-link:hover {
    opacity: 0.8;
}

.sidebar-article-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.sidebar-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-article-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.sidebar-label {
    position: sticky;
    top: 80px;
    margin-top: 20px;
}

/* === POPULARNE ARTYKUŁY Z TAGU === */
.popular-from-tag-block {
    width: 100%;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.popular-from-tag-block .container {
    max-width: 100%;
    padding: 0;
}

.popular-from-tag-header {
    text-align: center;
    margin-bottom: 20px;
}

.popular-from-tag-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B365D;
    margin: 0 0 8px 0;
}

.popular-from-tag-header .tag-name {
    color: #D64045;
    font-weight: 600;
}

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

.popular-from-tag-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.popular-from-tag-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.popular-from-tag-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.popular-from-tag-image {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

@supports not (aspect-ratio: 3/2) {
    .popular-from-tag-image {
        height: 200px;
    }
}

.popular-from-tag-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.popular-from-tag-item:hover .popular-from-tag-image img {
    transform: scale(1.05);
}

.popular-from-tag-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    color: #6c757d;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
}

.popular-from-tag-content {
    padding: 10px 15px 15px;
}

.popular-from-tag-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular-from-tag-link:hover .popular-from-tag-title {
    color: #D64045;
}

@media (max-width: 1024px) {
    .popular-from-tag-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .popular-from-tag-header h3 {
        font-size: 1.5rem;
    }
    
    .popular-from-tag-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .popular-from-tag-content {
        padding: 12px;
    }
    
    .popular-from-tag-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .popular-from-tag-grid {
        grid-template-columns: 1fr 1fr;
    }
}

h3.sidebar-article-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #000;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .sidebar-article-image {
        width: 80px;
        height: 80px;
    }
    
    h3.sidebar-article-title {
        font-size: 14px;
    }
}

.youtube-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 15px 0;
}

.youtube-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}