/* Базовый контейнер поста */
.post {
    --post-violet: #4F01A3;
    --post-bg: #F6F6F6;
    --post-accent: #853DFF;
    --post-radius: 16px;
    --icon-size: 48px;

    max-width: 1200px;
    background: var(--post-bg);
    border-radius: 0 0 var(--post-radius) var(--post-radius);
    color: var(--post-violet);
    line-height: 1.4;
}

/* Секции и отступы (аналог ваших Blocs) */
.post__section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
}

/* Заголовки */
.post__title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

.post__subtitle {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* Текстовые абзацы */
.post__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* Стилизация цитаты */
.post__quote {
    background: rgba(133, 61, 255, 0.10);
    padding: 16px;
    border-radius: var(--post-radius);
    margin: 16px 32px;
    max-width: 852px;
    align-self: center; /* Центрирование как в макете */
}

.post__quote-icon {
    font-size: 148px;
    height: 46px;
    line-height: 1;
    margin-left: -8px;
    background: linear-gradient(180deg, #853DFF 0%, #20004C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.post__quote-content {
    font-size: 15px;
    color: #20004C;
    margin-bottom: 16px;
}

.post__quote-bigcontent {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 0px;
}

.post__author-name {
    display: block;
    font-weight: 700;
    font-size: 20px;
    color: #7232DE;
    font-style: normal;
}

.post__author-role {
    display: block;
    font-size: 16px;
    color: #7232DE;
    margin-bottom: 8px;
}

/* Списки */
.post__list {
    /*list-style: none;*/
    padding: 0;
    margin: 0px 32px;
}

.post__list li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Кнопка (Support Line / CTA) */
.post__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--post-accent);
    color: white;
    padding: 8px 12px;
    border-radius: 12px;
    text-decoration: none;
    width: fit-content;
    transition: opacity 0.2s;
}

.post__cta:hover {
    /*opacity: 0.9;*/
    filter: brightness(0.9); /* 1 — оригинал, 0.85 — легкое затенение */
    color: white;
}

.post__cta small {
    font-size: 0.8em;
    opacity: 0.8;
}

.post__cta-icon {
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  
  /* Подключение файла */
  background-image: url('../img/ArrowLeft_Icon.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* Чтобы иконка всегда вписывалась в размер */
  
  /* Если в макете она была развернута на 180 градусов */
  transform: rotate(0deg);
  
  /* Позволяет менять размер на лету через инлайн-стиль или переопределение */
  flex-shrink: 0; 
}

.post__table {
  width: 1px; /* Растягивается на всю ширину контента */
  border-spacing: 0;
  border: 1px solid #4F01A3;
  border-radius: 16px;
  overflow: hidden; /* Важно, чтобы фон ячеек не вылезал за скругление */
  border-collapse: separate; /* Необходимо для работы border-radius */
  /*margin: 16px 0;*/
}

/* Общие стили для всех ячеек */
.post__table td {
  padding: 8px 16px;
  border-bottom: 1px solid #4F01A3; /* Разделение строк */
}

/* Убираем линию у последней строки */
.post__table tr:last-child td {
  border-bottom: none;
}

/* Первый столбец (заголовки) */
.post__table-header {
  background-color: #4F01A3;
  width: 1px;  /*Можно настроить ширину */
  text-align: right;
  white-space: nowrap;
}

.post__table-header h3 {
  color: #FFFFFF;
  margin: 0;
  font-size: 16px; /* Настрой размер под себя */
  text-align: right;
}

/* Второй столбец (контент) */
.post__table-content {
  background-color: #FFFFFF;
  white-space: nowrap;
}

.post__table-content p {
  margin: 0;
  color: #4F01A3;
}