/* Sidebar Info Box Styles */
.wpe-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wpe-info-box {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.wpe-info-box h3 {
    color: #0f4c21;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.wpe-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wpe-info-item strong {
    display: block;
    font-size: 0.875rem;
    color: #0f4c21;
    margin-bottom: 0.25rem;
}

.wpe-info-item p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* Milestone List */
.wpe-milestone-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 0;
}

.wpe-milestone-list li {
    padding-left: 1.5rem;
    position: relative;
    color: #495057;
    font-size: 0.9375rem;
}

.wpe-milestone-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0f4c21;
    font-weight: 700;
}

/* Highlight Stat */
.wpe-highlight-stat {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #e8f5e9;
    border-radius: 8px;
    align-items: flex-start;
}

.wpe-highlight-stat svg {
    color: #2d5016;
    flex-shrink: 0;
}

.wpe-highlight-stat strong {
    display: block;
    color: #1a7431;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.wpe-highlight-stat p {
    margin: 0;
    color: #495057;
    font-size: 0.875rem;
}

/* Brazil Info */
.wpe-brazil-info p {
    margin-bottom: 0.75rem;
    color: #495057;
    font-size: 0.9375rem;
}

.wpe-focus-text {
    font-style: italic;
    color: #0f4c21;
    font-weight: 500;
}

/* Quick Links */
.wpe-quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wpe-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
    text-decoration: none;
    color: #495057;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.wpe-link-item:hover {
    background: #e9ecef;
    color: #0f4c21;
}

.wpe-link-item svg {
    color: #6c757d;
    flex-shrink: 0;
}

/* Media Contact */
.wpe-contact-email {
    display: block;
    color: #0f4c21;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1rem;
}

.wpe-contact-email:hover {
    text-decoration: underline;
}

.wpe-social-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wpe-hashtag {
    padding: 0.25rem 0.75rem;
    background: #e8f5e9;
    color: #1a7431;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wpe-sidebar {
        order: 2;
    }
}