.menu-btn-guest a {
    background-color: #dc2626; /* Twój czerwony kolor */
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.2);
}

.menu-btn-guest a:hover {
    background-color: #111827; /* Ciemny przy najechaniu */
    transform: translateY(-2px);
}

/* Styl dla zalogowanego (Panel Partnera) */
.menu-btn-logged a {
    background-color: #1e40af; /* Niebieski / Granatowy */
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.2);
}

.menu-btn-logged a:before {
    content: "👤"; /* Ikona usera */
    font-size: 14px;
}

.menu-btn-logged a:hover {
    background-color: #1e3a8a;
    transform: translateY(-2px);
}

/* Dostosowanie do mobile (opcjonalne, zależy od motywu) */
@media (max-width: 768px) {
    .menu-btn-guest a, .menu-btn-logged a {
        display: inline-block;
        margin-top: 10px;
    }
}
.author-archive {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.author-page-header {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.author-profile-card {
    display: flex;
    gap: 30px;
    align-items: center;
}

.author-avatar img {
    border-radius: 50%;
    border: 4px solid #f0f0f0;
}

.author-meta h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #2c3e50;
}

.author-description {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;
}

.section-divider {
    margin: 40px 0;
    border: 0;
    border-top: 1px solid #eee;
}

.comment-form-hp-field {
    display: none !important;
    visibility: hidden;
}
.archive-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.2s;
}

.archive-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.post-thumb img {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-radius: 4px;
}

.post-content h3 {
    margin: 5px 0 10px 0;
    font-size: 20px;
}

.post-content h3 a {
    color: #333;
    text-decoration: none;
}

.post-date {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .author-profile-card {
        flex-direction: column;
        text-align: center;
    }
    .archive-item {
        flex-direction: column;
    }
    .post-thumb img {
        width: 100%;
        height: auto;
    }
}