.blog-detail-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.article-title {
    font-size: 22px;
    color: #d53e07;
	text-align: center;
}

.article-thumbnail {
    max-width: 100%;
    border-radius: 22px;
}

.article-summary {
	padding: 20px;
	text-align: center;
}

.article-meta {
    color: rgb(88, 88, 88);
    font-size: 13px;
}

.article-content {
    width: 100%;
    max-width: 100%;
}

.article-content a {
    color: #d53e07;
}

.pen-red {
	background: none;
	color: red;
}

.marker-blue {
	background-color: #c1eaec;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 22px;
}

.article-content ul,
.article-content ol {
    /* вместо padding-left */
    padding-inline-start: 1.5rem;
    margin-inline: 0; /* чтобы не накапливались случайные внешние отступы */
    list-style-position: outside;
}

.article-content li {
    position: static;                 /* снимаем относительное позиционирование */
    margin-inline-start: 0;           /* отступы регулируем на контейнере списка */
}

/* Блок цитаты — тоже на логических свойствах */
blockquote {
    border-inline-start: 4px solid #d53e07;   /* вместо border-left */
    padding-inline-start: 5px;                /* вместо padding-left */
    margin-inline-start: 30px;                /* вместо margin-left */
}

/* Адаптив — без «лево/право» */
@media (max-width: 1055px) {
    blockquote {
        border-inline-start: 3px solid #d53e07;
        margin-inline-start: 20px;
    }
}

/* Таблица: мелкая правка — white-space: wrap не существует */
td, th {
    white-space: normal;              /* корректное значение */
    max-width: 500px;
    padding: 8px;
    border: 1px solid #ccc;
}

/* На всякий случай: длинные слова/URL не будут вылезать */
.article-content {
    overflow-wrap: anywhere;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

.article-content pre code {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
    line-height: 1.5;
    background-color:#f9f9f9;
    color:#24292e; 
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow-x: auto;
}

.table {
    overflow: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

table {
    min-width: max-content;
    border-collapse: collapse;
    overflow: auto;
}
  
td, th {
    white-space: wrap;
    max-width: 500px; 
    padding: 8px;
    border: 1px solid #ccc;
}

blockquote {
    border-left: 4px solid #d53e07;
    padding-left: 5px;
    margin-left: 30px;
}

#likeBtn {
    margin-top: 50px;    
    background: none;
    color: black;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 18px;
    padding: 10px 25px;
    cursor: pointer;
    transition: 
      background 0.2s,
      color 0.2s;
    outline: none;
}
  
#likeBtn:hover {
    background: #d53e07;
    color: white;
}
  
#likeBtn.active {
    background: #d53e07;           /* Яркий жёлтый, как акцент */
    color: white;
    transform: scale(0.97);
}


@media (max-width: 1055px) {
    blockquote {
        border-left: 3px solid #d53e07;
        margin-left: 20px;
    }
    .article-content li {
        left: 20px;
    }
}