.image-editing-top .hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
    gap: 1.5rem;
    padding: 1rem 0 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: #e8f3ff;
    color: #0f4c81;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.hero-tags span {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: #f4f7fb;
    color: #35506b;
    font-size: 0.9rem;
}

.hero-summary {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.summary-card {
    padding: 1rem 1.1rem;
    border: 1px solid #dbe7f2;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.summary-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #102a43;
}

.summary-card span {
    color: #52667a;
    font-size: 0.92rem;
    line-height: 1.6;
}

.entry-header {
    margin-bottom: 1rem;
}

.entry-header h2 {
    margin: 0 0 0.55rem;
    color: #102a43;
    font-size: 1.45rem;
}

.entry-header p {
    margin: 0;
    color: #52667a;
    line-height: 1.75;
}

.entry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.entry-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    border: 1px solid #d8e4ee;
    border-radius: 20px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.entry-card:hover {
    transform: translateY(-2px);
    border-color: #aac7e3;
    box-shadow: 0 18px 40px rgba(16, 42, 67, 0.08);
}

.entry-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #edf7ff 0%, #d8ecff 100%);
    font-size: 1.5rem;
}

.entry-name {
    color: #102a43;
    font-size: 1.1rem;
    font-weight: 700;
}

.entry-desc,
.entry-tips {
    margin-top: 0.3rem;
    color: #52667a;
    font-size: 0.93rem;
    line-height: 1.65;
}

.entry-tips {
    color: #0f4c81;
}

.entry-arrow {
    color: #0f4c81;
    font-size: 1.2rem;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.guide-card {
    padding: 1.2rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #dde7ef;
}

.guide-step {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    background: #0f4c81;
    color: #fff;
    font-weight: 700;
}

.guide-title {
    color: #102a43;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.guide-desc {
    color: #52667a;
    font-size: 0.93rem;
    line-height: 1.7;
}

@media (max-width: 960px) {
    .image-editing-top .hero-shell,
    .entry-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }
}
