/* Specialized Blog CSS - Using your Brand Variables */

.blog-hero-padding {
    padding: 80px 0 40px 0;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(148, 43, 113, 0.08);
}

.blog-card-icon {
    height: 160px;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.blog-card-content {
    padding: 25px;
}

.blog-tag {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h2 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 12px 0;
}

.blog-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

.blog-link:hover {
    border-bottom-color: var(--primary-color);
}

.blog-link.coming-soon {
    color: #999;
    pointer-events: none;
}

/* Detail Page (Article) Styling */
.faq-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0;
}

.word-category-box {
    background: #fff9fc;
    /* Light Plum Tint */
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #f3e6ee;
}

.word-category-box h3 {
    color: var(--primary-color);
    margin-top: 0;
}



.word-grid-simple span {
    background: #fff;
    padding: 8px 15px;
    border-radius: 50px; /* Pill shape */
    border: 1px solid var(--primary-color); /* Uses your Plum color */
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: 0.3s ease;
    cursor: default;
    display: inline-block;
    margin-bottom: 5px;
}

.word-grid-simple span:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
}


/* Word List & Content Styles */
.word-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.word-columns ul {
    padding-left: 20px;
    line-height: 1.8;
}

.word-columns li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.word-grid-simple {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.word-grid-simple span {
    background: white;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.sample-text {
    background: #fdf2f8; /* Very light plum/pink tint */
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #4b5563;
}

.sample-text em {
    color: var(--primary-color);
    font-weight: bold;
    font-style: normal;
}

/* Scannability for SEO */
.blog-post h2 {
    margin-bottom: 15px;
}

.blog-post p {
    line-height: 1.7;
    margin-bottom: 20px;
}



/* Photography Blog Specifics */
.tip-box {
    background: #fff9e6; /* Light Gold tint */
    border: 1px dashed #fdbb2d;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.photo-placeholder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.placeholder-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.placeholder-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.mistake-list {
    list-style: none;
    padding: 0;
}

.mistake-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
}

@media (max-width: 600px) {
    .photo-placeholder-grid {
        grid-template-columns: 1fr;
    }
}