
        /* Контейнер — ограничение ширины 870px */
        .afina-card-container {
            max-width: 870px;
            width: 100%;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
            overflow: hidden;

            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f1f5f9;
            display: flex;
            justify-content: center;
            align-items: center;

        }

        /* Заголовок сверху */
        .afina-card-header {
            text-align: center;
            padding: 16px 20px;
            background: white;
            border-bottom: 1px solid #eef2f6;
        }
        .afina-card-header h2 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #0f172a;
        }
        .afina-card-header p {
            font-size: 0.85rem;
            color: #475569;
            margin-top: 4px;
        }

        /* Основной блок: картинка + текст, высота ограничена 300px */
        .afina-card-main {
            display: flex;
            height: 300px;
            overflow: hidden;
        }

        /* Левая часть: картинка */
        .afina-card-image {
            flex: 1.2;
            min-width: 0;
            background: #e2e8f0;
        }
        .afina-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Правая часть: текст + кнопка */
        .afina-card-content {
            flex: 1;
            padding: 0px 24px 20px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: white;
            overflow-y: auto;
        }
        .afina-card-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 12px;
            border-left: 4px solid #3b82f6;
            padding-left: 14px;
        }
        .afina-card-content p {
            font-size: 0.9rem;
            line-height: 1.4;
            color: #334155;
            margin-bottom: 5px;
            padding:0;
        }
        .afina-card-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #3b82f6;
            color: white;
            border: none;
            padding: 8px 20px;
            font-size: 0.85rem;
            font-weight: 500;
            border-radius: 40px;
            cursor: pointer;
            text-decoration: none;
            width: fit-content;
            transition: 0.2s;
            background:linear-gradient(to bottom, #008000, #005200);

        }
        .afina-card-btn:hover {
            background: #2563eb;
               background: #2563eb;
            transform: translateY(-1px);
            float:left;
        }

	.afina-card-content ul{
		margin-top:5px;
	}