.akm-fachcheck {
    --akm-fc-accent: #2f6b3b;
    --akm-fc-background: #f6f8f5;
    --akm-fc-border: #d9e3d7;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px;
    position: relative;
    margin: 32px 0;
    padding: 24px 26px;
    background: var(--akm-fc-background);
    border: 1px solid var(--akm-fc-border);
    border-left: 5px solid var(--akm-fc-accent);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(20, 45, 25, 0.05);
    color: inherit;
}

.akm-fachcheck *,
.akm-fachcheck *::before,
.akm-fachcheck *::after {
    box-sizing: border-box;
}

.akm-fachcheck__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--akm-fc-accent);
    color: #fff;
}

.akm-fachcheck__icon svg {
    display: block;
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.akm-fachcheck__content {
    min-width: 0;
}

.akm-fachcheck__title {
    margin: 0 0 8px;
    color: var(--akm-fc-accent);
    font-size: clamp(1.08rem, 1rem + 0.25vw, 1.24rem);
    font-weight: 750;
    line-height: 1.3;
}

.akm-fachcheck__intro {
    margin: 0 0 18px;
    line-height: 1.65;
}

.akm-fachcheck__intro p,
.akm-fachcheck__note p {
    margin-top: 0;
    margin-bottom: 8px;
}

.akm-fachcheck__intro p:last-child,
.akm-fachcheck__note p:last-child {
    margin-bottom: 0;
}

.akm-fachcheck__details {
    display: grid;
    gap: 10px;
    margin: 0;
}

.akm-fachcheck__detail {
    display: grid;
    grid-template-columns: minmax(145px, 0.38fr) minmax(0, 1fr);
    gap: 12px 20px;
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid var(--akm-fc-border);
}

.akm-fachcheck__detail dt,
.akm-fachcheck__detail dd {
    margin: 0;
}

.akm-fachcheck__detail dt {
    font-size: 0.88em;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.akm-fachcheck__detail dd {
    line-height: 1.5;
}

.akm-fachcheck a {
    color: var(--akm-fc-accent);
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.akm-fachcheck a:hover,
.akm-fachcheck a:focus {
    text-decoration-thickness: 2px;
}

.akm-fachcheck__subline {
    display: block;
    margin-top: 2px;
    color: rgba(25, 36, 27, 0.72);
    font-size: 0.92em;
    font-weight: 400;
}

.akm-fachcheck__sources {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.akm-fachcheck__source {
    display: block;
}

.akm-fachcheck__note {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.58);
    font-size: 0.92em;
    line-height: 1.55;
}

@media (max-width: 640px) {
    .akm-fachcheck {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
        margin: 24px 0;
        padding: 19px 17px 20px;
        border-left-width: 4px;
    }

    .akm-fachcheck__icon {
        width: 32px;
        height: 32px;
    }

    .akm-fachcheck__icon svg {
        width: 20px;
        height: 20px;
    }

    .akm-fachcheck__detail {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}

.akm-fachcheck__reviewers {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.akm-fachcheck__reviewer {
    display: block;
}
