
h3{color: var(--primary-color);}

ul li::marker {
  color: var(--primary-color);
}

.article-content {
    padding: 3rem 0;
}

.byline {
    color: var(--light-text);
    font-size: 0.9rem;
}

img.post{margin: 1rem 0;}

.byline a {
    color: var(--primary-color);
    text-decoration: none;
}

.byline a:hover {
    text-decoration: underline;
}


.accordion-item h3{font-size: 1em;}





.author-signature {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.author-signature.style-border {
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px #dee2e6 solid;
}

.author-signature-inner {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.author-signature.style-border .author-avatar-large {
    border: 3px solid var(--primary-color);
}
.author-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    padding: 5px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.author-avatar-large img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.author-signature.style-border .author-content {
    color: var(--text-color);
}
.author-content {
    flex-grow: 1;
    color: white;
}

.author-signature.style-border .author-label {
    color: var(--primary-color);
}
.author-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.author-signature.style-border .author-name-large {
    color: var(--text-color);
}
.author-name-large {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: white;
}

.author-signature.style-border .author-title {
    color: var(--light-text);
    opacity: 1;
}
.author-title {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.author-signature.style-border .author-description {
    color: var(--light-text);
    opacity: 1;
}
.author-description {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.author-signature.style-border .author-link {
    background: var(--primary-color);
    color: white;
}
.author-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s 
ease;
    backdrop-filter: blur(10px);
}




.cta-box {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    text-align: center;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-box-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cta-box-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #0d6efd;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #0d6efd;
}


.alert-note{background: #fff;padding: 1.5rem;border-radius: 8px;border: 1px #ccc solid;margin:15px 0;}
.expert-tip{background: #fff3cd;padding: 1.5rem;border-radius: 8px;border: 1px #856404 solid;margin:15px 0;}


@media (max-width: 768px) {
    .cta-box {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .cta-box-title {
        font-size: 1.3rem;
    }

    .cta-box-text {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.75rem 2rem;
    }


}


@media (max-width: 768px) {
    .author-signature-inner {
        flex-direction: column;
        text-align: center;
    }
}


@media (min-width: 768px) {
    h1{font-size: 2rem;}
    h2{font-size:1.5rem;}
    h3{font-size:1.4rem;}
}