.skyemont-blog-container-3f478173 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1a202c;
    margin: 20px auto;
    max-width: 1200px;
}

.skyemont-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 30px;
    align-items: start;
}

.skyemont-grid.is-sidebar-left .skyemont-feed {
    order: 2;
}

.skyemont-grid.is-sidebar-left .skyemont-sidebar {
    order: 1;
}

.skyemont-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.skyemont-feed-header {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skyemont-meta-count {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
}

.skyemont-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f4f8;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skyemont-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.skyemont-card-image {
    width: 240px;
    min-width: 240px;
    background-size: cover;
    background-position: center;
    display: block;
}

.skyemont-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.skyemont-badge {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: #0097a7;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.skyemont-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.skyemont-card-title a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.15s ease;
}

.skyemont-card-title a:hover {
    color: #0097a7;
}

.skyemont-card-excerpt {
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.skyemont-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #718096;
    flex-wrap: wrap;
}

.skyemont-card-footer.has-arrow-only {
    justify-content: flex-end;
}

.skyemont-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.skyemont-divider {
    color: #cbd5e0;
}

.skyemont-arrow {
    margin-left: auto;
    color: #0097a7;
    transition: transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.skyemont-card:hover .skyemont-arrow {
    transform: translateX(4px);
}

.skyemont-empty-state {
    background: #fff;
    border: 1px solid #f0f4f8;
    border-radius: 8px;
    padding: 28px;
}

.skyemont-empty-state h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
}

.skyemont-empty-state p {
    margin: 0;
    color: #718096;
}

.skyemont-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.skyemont-sidebar-card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f4f8;
}

.skyemont-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 10px;
}

.skyemont-popular-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skyemont-popular-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

.skyemont-popular-num {
    background: #e6fffa;
    color: #008080;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex: 0 0 24px;
}

.skyemont-popular-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.skyemont-popular-item:hover .skyemont-popular-text {
    color: #0097a7;
}

.skyemont-popular-views,
.skyemont-sidebar-empty {
    font-size: 12px;
    color: #718096;
}

.skyemont-sidebar-empty {
    margin: 0;
    line-height: 1.5;
}

.skyemont-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skyemont-cat-item {
    border-bottom: 1px solid #edf2f7;
}

.skyemont-cat-item:last-child {
    border-bottom: none;
}

.skyemont-cat-item a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    color: #4a5568;
    text-decoration: none;
    transition: color 0.15s ease;
}

.skyemont-cat-item:hover a,
.skyemont-cat-item.is-active a {
    color: #0097a7;
}

.skyemont-cat-count {
    color: #718096;
    font-size: 12px;
}

.skyemont-cta-card {
    background: #081c2f;
    border-radius: 8px;
    padding: 30px 24px;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.skyemont-cta-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0097a7;
}

.skyemont-cta-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.skyemont-cta-text {
    font-size: 14px;
    color: #cbd5e0;
    line-height: 1.5;
    margin: 0 0 24px 0;
}

.skyemont-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #0097a7;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: background-color 0.15s ease;
}

.skyemont-btn-primary:hover {
    background-color: #00838f;
}

@media (max-width: 991px) {
    .skyemont-grid {
        grid-template-columns: 1fr;
    }

    .skyemont-grid.is-sidebar-left .skyemont-feed,
    .skyemont-grid.is-sidebar-left .skyemont-sidebar {
        order: initial;
    }
}

@media (max-width: 600px) {
    .skyemont-card {
        flex-direction: column;
    }

    .skyemont-card-image {
        width: 100%;
        min-width: 0;
        height: 180px;
    }

    .skyemont-card-content,
    .skyemont-sidebar-card,
    .skyemont-cta-card {
        padding: 20px;
    }

    .skyemont-arrow {
        margin-left: 0;
    }
}
