/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */


 .blog-page {
    max-width: 1184px;
    margin: 0 auto;
 }

 .popular-tags {
    border-radius: 12px;
 }

.blog-page .post-preview,
.blog-page time,
.blog-page .blog-tag,
.blog-page .tag-button {
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
}

.blog-page time {
    color: #AFAFAF;
}


.blog-page .tag-button {
    font-size: 14px;
} /*или добавить к элементу .tag-button класс .text-sm*/

.blog-page .tag-button.bg-black {
    background-color: #6F16B5;
} /*или заменить у элемента .tag-button класс .bg-black на новый класс для этого цвета,
 он еще у ссылок будет испольховаться*/

.prose-lg img {
    border: 1px solid #E8E6E3;
    border-radius: 12px;
}

/* Rating Stars */
.rating-star {
    position: relative;
    display: inline-block;
}

.rating-star svg {
    transition: all 0.2s ease;
}

/* Filled stars - yellow */
.rating-star.filled svg {
    fill: #FBBF24;
    stroke: #F59E0B;
    stroke-width: 0.5px;
}

/* Half stars - gradient from yellow to gray */
.rating-star.half svg {
    fill: url(#halfStarGradient);
    stroke: #F59E0B;
    stroke-width: 0.5px;
}

/* Empty stars - light gray with border for visibility on dark theme */
.rating-star.empty svg {
    fill: rgba(255, 255, 255, 0.2);
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1px;
}

/* Hover state */
.rating-star:hover svg {
    fill: #F59E0B;
    stroke: #D97706;
    stroke-width: 0.5px;
    transform: scale(1.1);
}

/* FAQ and Author dark sections */
.prose-sm.text-purple-100 p {
    color: #E9D5FF;
    line-height: 1.6;
}

.prose-sm.text-purple-100 a {
    color: #FDE68A;
    text-decoration: underline;
}

.prose-sm.text-purple-100 a:hover {
    color: #FCD34D;
}