/* ═══ Контентные блоки (шаблоны-пазлы) — редактор + публичная страница ═══ */

.au-block-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
}

.au-block-layout > .au-block-wrap {
    box-sizing: border-box;
}

/* Анимации кнопок Editor+ */
.au-anim-pulse {
    animation: au-block-pulse 2s ease-in-out infinite;
}

.au-anim-fade {
    animation: au-block-fade 1.2s ease both;
}

.au-anim-bounce {
    animation: au-block-bounce 1.4s ease infinite;
}

@keyframes au-block-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes au-block-fade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes au-block-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.au-block {
    margin: 0 0 28px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.au-block--image-left,
.au-block--image-right {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.au-block--image-right {
    flex-direction: row-reverse;
}

.au-block__media {
    position: relative;
    flex: 0 0 320px;
    max-width: 100%;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #f1f5f9;
}

.au-block__media img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 180px;
    object-fit: cover;
    border-radius: 16px;
}

.au-block__media-tools {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.au-block__tool-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.86);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
}

.au-block__tool-btn:hover {
    background: rgba(24, 125, 53, 0.95);
}

.au-block__media:not(.is-filled) .au-block__media-tools {
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: calc(100% - 16px);
}

.au-block__media:not(.is-filled) .au-block__media-tools,
.au-block__media.is-filled:hover .au-block__media-tools,
.au-block__media.is-editor-active .au-block__media-tools,
.cke_editable .au-block__media:hover .au-block__media-tools,
.au-editor-body .au-block__media:hover .au-block__media-tools {
    opacity: 1;
    pointer-events: auto;
}

.au-block__media:not(.is-filled) [data-au-image-action="replace"],
.au-block__media:not(.is-filled) [data-au-image-action="crop"] {
    display: none;
}

/* Публичная страница — панель инструментов скрыта */
.content-text .au-block__media-tools,
.chapter-editor-preview-content .au-block__media-tools {
    display: none !important;
}

.au-block__image-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.82);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
    transition: background 0.2s ease, transform 0.2s ease;
}

.au-block__image-btn:hover {
    background: rgba(24, 125, 53, 0.92);
    transform: translate(-50%, -50%) scale(1.03);
}

.au-block__media.is-filled .au-block__image-btn {
    opacity: 0;
    pointer-events: none;
}

.au-block__media.is-filled:hover .au-block__image-btn {
    opacity: 1;
    pointer-events: auto;
    background: rgba(24, 125, 53, 0.92);
}

.au-block__body {
    flex: 1 1 260px;
    min-width: 0;
}

.au-block__body h2,
.au-block__body h3,
.au-block__body h4 {
    margin-top: 0;
    line-height: 1.25;
    color: #0f172a;
}

.au-block--hero {
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, #187d35 0%, #447bad 100%);
    color: #fff;
}

.au-block--hero[data-au-bg="none"],
.au-block--hero.au-block--bg-none {
    background: transparent !important;
    color: inherit;
}

.au-block--hero[data-au-bg="none"] h2,
.au-block--hero.au-block--bg-none h2 {
    color: #0f172a;
}

.au-block--hero[data-au-bg="none"] p,
.au-block--hero.au-block--bg-none p {
    color: #334155;
}

.au-block--hero .au-block__eyebrow {
    margin: 0 0 10px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.82;
}

.au-block--hero h2 {
    margin: 0 0 12px;
    color: #fff;
}

.au-block--hero p {
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.92);
}

.au-block--lead .au-block__lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #334155;
    margin: 0;
}

.au-block--cards-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.au-block--text-btn-row .au-el-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.au-block--cta {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #dbe4ea;
    background: #f8fafc;
}

.au-block--note {
    padding: 18px 20px;
    border-left: 4px solid #187d35;
    border-radius: 14px;
    background: #f0fdf4;
}

.au-block--note strong {
    display: block;
    margin-bottom: 8px;
    color: #166534;
}

.au-block--columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.au-block__column {
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.au-block--gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.au-block--gallery .au-block__media {
    flex: none;
    width: 100%;
}

.au-block--gallery .au-block__media img {
    min-height: 160px;
    height: auto;
    max-height: 420px;
}

/* Вертикальный стек — после «Упорядочить» и для узкой колонки */
.au-block--stacked-vertical,
.au-block--organize-vertical,
.content-text .au-block--gallery,
.content-text .au-block--columns[data-au-block="two-images"],
.content-text .au-block--team,
.content-text .au-block--image-left,
.content-text .au-block--image-right,
.content-text .au-block--profile,
.chapter-editor-preview-content .au-block--gallery,
.chapter-editor-preview-content .au-block--columns[data-au-block="two-images"],
.chapter-editor-preview-content .au-block--team,
.chapter-editor-preview-content .au-block--image-left,
.chapter-editor-preview-content .au-block--image-right,
.chapter-editor-preview-content .au-block--profile,
.au-editor-body .au-block--image-left,
.au-editor-body .au-block--image-right,
.au-editor-body .au-block--profile,
.au-editor-body .au-block--organize-vertical {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    grid-template-columns: unset !important;
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

.au-block--stacked-vertical > .au-block__media,
.au-block--organize-vertical > .au-block__media,
.content-text .au-block--gallery > .au-block__media,
.chapter-editor-preview-content .au-block--gallery > .au-block__media,
.content-text .au-block--image-left > .au-block__media,
.content-text .au-block--image-right > .au-block__media,
.content-text .au-block--profile > .au-block__media,
.chapter-editor-preview-content .au-block--image-left > .au-block__media,
.chapter-editor-preview-content .au-block--image-right > .au-block__media,
.chapter-editor-preview-content .au-block--profile > .au-block__media,
.au-editor-body .au-block--organize-vertical .au-block__media {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

.au-block--organize-vertical .au-block__media img,
.content-text .au-block--profile .au-block__media img,
.chapter-editor-preview-content .au-block--profile .au-block__media img,
.au-editor-body .au-block--organize-vertical .au-block__media img {
    min-height: 0 !important;
    max-height: 480px;
    object-fit: contain;
    width: 100% !important;
}

.content-text .au-el-row,
.chapter-editor-preview-content .au-el-row,
.au-editor-body .au-el-row,
.editor-plus-block__content .au-el-row {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
}

.content-text .au-el-row > *,
.chapter-editor-preview-content .au-el-row > *,
.au-editor-body .au-el-row > *,
.editor-plus-block__content .au-el-row > * {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}

.au-block:last-child {
    margin-bottom: 0;
}

.au-block--documents ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.au-block--documents li {
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
}

.au-block--faq,
.au-block--toggle {
    display: grid;
    gap: 12px;
}

.au-block--faq details,
.au-block--toggle details {
    padding: 16px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
}

.au-block--faq summary,
.au-block--toggle summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.au-block--toggle summary::after {
    content: '+';
    float: right;
    font-weight: 700;
    color: #187d35;
}

.au-block--toggle details[open] summary::after {
    content: '−';
}

/* Ряд элементов (слева/справа) */
.au-el-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.au-el-row > * {
    flex: 1 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .au-el-row > * {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Раскрывающаяся кнопка */
.au-block__expand {
    margin: 12px 0;
    border-radius: 14px;
}

.au-block__expand-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 14px;
    background: #187d35;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.au-block__expand-btn:hover {
    background: #146b2d;
}

.au-block__expand-btn i {
    transition: transform 0.25s ease;
}

.au-block__expand.is-open .au-block__expand-btn i {
    transform: rotate(180deg);
}

.au-block__expand-panel {
    display: none;
    padding: 16px 18px;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 14px 14px;
    background: #fff;
}

.au-block__expand.is-open .au-block__expand-panel {
    display: block;
}

.au-block__expand.is-open .au-block__expand-btn {
    border-radius: 14px 14px 0 0;
}

.au-block--image-center {
    text-align: center;
}

.au-block--image-center .au-block__media {
    flex: none;
    width: min(100%, 640px);
    margin: 0 auto;
}

.au-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.au-block table th {
    padding: 12px;
    border: 1px solid #dbe4ea;
    background: #187d35;
    color: #fff;
}

.au-block table td {
    padding: 12px;
    border: 1px solid #dbe4ea;
}

/* CKEditor editable area */
.cke_editable .au-block__image-btn,
.au-editor-body .au-block__image-btn {
    user-select: none;
}

.cke_editable .au-block__media:not(.is-filled) img,
.au-editor-body .au-block__media:not(.is-filled) img {
    opacity: 0.35;
    filter: grayscale(0.2);
}

/* Публичная страница — контент наследует те же блоки */
.content-text .au-block img,
.chapter-editor-preview-content .au-block img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .au-block--image-left,
    .au-block--image-right {
        flex-direction: column;
    }

    .au-block--image-right {
        flex-direction: column;
    }

    .au-block__media {
        flex-basis: auto;
        width: 100%;
    }
}

/* ═══ Дополнительные шаблоны ═══ */

.au-block--quote {
    margin: 0 0 28px;
    padding: 24px 28px;
    border-left: 4px solid #447bad;
    border-radius: 0 16px 16px 0;
    background: #f8fafc;
    font-style: italic;
}

.au-block--quote p {
    margin: 0 0 10px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #334155;
}

.au-block--quote cite {
    display: block;
    font-style: normal;
    font-size: 0.9rem;
    color: #64748b;
}

.au-block--warning {
    padding: 18px 20px;
    border-left: 4px solid #f59e0b;
    border-radius: 14px;
    background: #fffbeb;
}

.au-block--warning strong {
    display: block;
    margin-bottom: 8px;
    color: #b45309;
}

.au-block--columns-3 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.au-block--columns > .au-block__media {
    flex: 1 1 240px;
    max-width: 100%;
}

.au-block--cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.au-block__card {
    padding: 20px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.au-block__card h4 {
    margin: 0 0 8px;
}

.au-block--stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.au-block__stat {
    text-align: center;
    padding: 20px 16px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.au-block__stat strong {
    display: block;
    font-size: 1.75rem;
    line-height: 1.1;
    color: #187d35;
    margin-bottom: 6px;
}

.au-block__stat span {
    color: #64748b;
    font-size: 0.92rem;
}

.au-block--timeline {
    display: grid;
    gap: 0;
    padding-left: 20px;
    border-left: 2px solid #dbe4ea;
}

.au-block__timeline-item {
    position: relative;
    padding: 0 0 24px 20px;
}

.au-block__timeline-item::before {
    content: "";
    position: absolute;
    left: -27px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #187d35;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #187d35;
}

.au-block__timeline-item:last-child {
    padding-bottom: 0;
}

.au-block__timeline-item strong {
    display: block;
    margin-bottom: 6px;
    color: #187d35;
}

.au-block--steps ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
    counter-reset: step;
}

.au-block--steps li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #fff;
    counter-increment: step;
}

.au-block--steps li::before {
    content: counter(step);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #187d35;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.au-block--team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.au-block__person {
    text-align: center;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.au-block__person .au-block__media {
    flex: none;
    width: 120px;
    margin: 0 auto 12px;
}

.au-block__person .au-block__media img {
    min-height: 120px;
    border-radius: 50%;
}

.au-block__person h4 {
    margin: 0 0 4px;
}

.au-block__person p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.au-block--video .au-block__video-wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
}

.au-block--video iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

.au-block--contact {
    padding: 20px 24px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.au-block--contact h3 {
    margin-top: 0;
}

.au-block--checklist ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.au-block--checklist li {
    position: relative;
    padding: 12px 16px 12px 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.au-block--checklist li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #187d35;
    font-weight: 700;
}

.au-block--compare {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.au-block__column--yes {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.au-block__column--no {
    border-color: #fecaca;
    background: #fef2f2;
}

.au-block--partners .au-block__partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.au-block--partners .au-block__media {
    flex: 0 0 140px;
    width: 140px;
}

.au-block--partners .au-block__media img {
    min-height: 60px;
    object-fit: contain;
    background: #fff;
}

.au-block--downloads .au-block__download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
}

.au-block--downloads .au-block__download-link:hover {
    border-color: #187d35;
    color: #187d35;
}

.au-block--profile {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.au-block--profile .au-block__media {
    flex: 0 0 200px;
}

.au-block--banner .au-block__media {
    flex: none;
    width: 100%;
    border-radius: 20px;
}

.au-block--banner .au-block__media img {
    min-height: 220px;
    max-height: 360px;
}

.au-block--gallery-4 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.au-block--caption {
    margin: 0 0 28px;
    text-align: center;
}

.au-block--caption figcaption {
    margin-top: 10px;
    color: #64748b;
    font-size: 0.92rem;
}

.au-block--section-heading {
    text-align: center;
    padding: 8px 0 20px;
}

.au-block--section-heading h2 {
    margin: 0 0 8px;
}

.au-block--section-heading p {
    margin: 0;
    color: #64748b;
}

.au-block--highlight {
    padding: 18px 20px;
    border-left: 4px solid #447bad;
    border-radius: 14px;
    background: #eff6ff;
}

.au-block--highlight strong {
    display: block;
    margin-bottom: 8px;
    color: #1e40af;
}

.au-block--divider {
    text-align: center;
    padding: 8px 0;
}

.au-block--divider p {
    margin: 0 0 10px;
    color: #64748b;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.au-block--divider hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dbe4ea, transparent);
    margin: 0;
}

.au-block--bullets ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.au-block--bullets li {
    position: relative;
    padding-left: 22px;
}

.au-block--bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #187d35;
}

.au-block--icon-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.au-block--icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.au-block__icon-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-top: 0.35em;
    border-radius: 50%;
    background: #187d35;
}

.au-block--definitions dl {
    margin: 0;
    display: grid;
    gap: 14px;
}

.au-block--definitions dt {
    font-weight: 700;
    color: #0f172a;
}

.au-block--definitions dd {
    margin: 4px 0 0;
    color: #475569;
}

.au-block--pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.au-block__price-card {
    padding: 22px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #fff;
    text-align: center;
}

.au-block__price-card--accent {
    border-color: #187d35;
    background: #f0fdf4;
    box-shadow: 0 12px 28px rgba(24, 125, 53, 0.12);
}

.au-block__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #187d35;
    margin: 8px 0 16px;
}

.au-block--schedule {
    display: grid;
    gap: 12px;
}

.au-block__schedule-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.au-block__schedule-item time {
    flex-shrink: 0;
    min-width: 52px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #187d35;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
}

.au-block--news {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.au-block__news-card {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.au-block__news-card .au-block__media {
    width: 100%;
    margin-bottom: 12px;
}

.au-block__btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 8px;
}

.au-block__btn--primary {
    background: #187d35;
    color: #fff;
}

.au-block__btn--secondary {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.au-block--link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.au-block__link-card {
    display: block;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.au-block__link-card:hover {
    border-color: #187d35;
    box-shadow: 0 8px 20px rgba(24, 125, 53, 0.1);
}

.au-block__link-card h4 {
    margin: 0 0 6px;
}

.au-block__link-card p {
    margin: 0;
    color: #187d35;
    font-weight: 600;
}

.au-block--social {
    padding: 18px 20px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.au-block--map .au-block__map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .au-block--profile {
        flex-direction: column;
    }

    .au-block--profile .au-block__media {
        flex-basis: auto;
        width: 100%;
    }
}
