/*
 Theme Name:   Astra Child
 Theme URI:    https://aha.ly-partners.com/
 Description:  Astra 子主题 – 自定义Blog的2种布局report和activities
 Author:       LYP - Micheal
 Template:     astra
 Version:      1.0.0
*/

/* report 页面css */
.aha-report-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    padding: 20px;
}
.aha-report-sidebar {
    width: 30%;
    border-right: 1px solid #eee;
    padding-right: 20px;
}
.aha-report-content {
    width: 70%;
}
@media (max-width: 768px) {
    .aha-report-layout {
        flex-direction: column;
    }
    .aha-report-sidebar,
    .aha-report-content {
        width: 100%;
    }
    .aha-report-sidebar {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }
}

/*  activitiescss */
.aha-activity-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}
.aha-activity-header {
    text-align: center;
    margin-bottom: 30px;
}
.aha-activity-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.aha-activity-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.aha-card {
    flex: 1;
    background: #f5f7fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}
.aha-activity-content {
    line-height: 1.8;
}
@media (max-width: 768px) {
    .aha-activity-cards {
        flex-direction: column;
    }
}