/* Basic Reset & Body for the article wrapper */
.gazu-article-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
    max-width: 960px;
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Headings */
.gazu-article-wrapper h1,
.gazu-article-wrapper h2,
.gazu-article-wrapper h3,
.gazu-article-wrapper h4 {
    color: #2c3e50;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.gazu-article-wrapper h1 {
    font-size: 2.5em;
    text-align: center;
    color: #e74c3c; /* Gazu red */
    margin-bottom: 1em;
}

.gazu-article-wrapper h2 {
    font-size: 1.8em;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.gazu-article-wrapper h3 {
    font-size: 1.4em;
}

/* Paragraphs & Lists */
.gazu-article-wrapper p {
    margin-bottom: 1em;
}

.gazu-article-wrapper ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1em;
}

.gazu-article-wrapper ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 1em;
}

/* Links */
.gazu-article-wrapper a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gazu-article-wrapper a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Images */
.gazu-article-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Table of Contents */
.gazu-article-toc {
    background-color: #ecf0f1;
    border-left: 5px solid #3498db;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.gazu-article-toc h3 {
    margin-top: 0;
    color: #34495e;
}

.gazu-article-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gazu-article-toc ul li a {
    display: block;
    padding: 5px 0;
    color: #34495e;
}

.gazu-article-toc ul li a:hover {
    color: #2c3e50;
    text-decoration: none;
}

/* Category Bubbles/Cards */
.gazu-article-category-bubbles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
    text-align: center;
}

.gazu-article-bubble-card {
    background-color: #fefefe;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.gazu-article-bubble-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.gazu-article-bubble-card a {
    font-weight: bold;
    color: #e74c3c; /* Gazu red */
    font-size: 1.1em;
    text-decoration: none;
}

.gazu-article-bubble-card a:hover {
    text-decoration: underline;
}

/* Product Gallery */
.gazu-article-product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gazu-article-product-gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.gazu-article-product-gallery img:hover {
    transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gazu-article-wrapper {
        padding: 10px;
    }

    .gazu-article-wrapper {
        margin: 10px auto;
        padding: 20px;
    }

    .gazu-article-wrapper h1 {
        font-size: 2em;
    }

    .gazu-article-wrapper h2 {
        font-size: 1.5em;
    }

    .gazu-article-category-bubbles {
        grid-template-columns: 1fr;
    }

    .gazu-article-product-gallery {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}
