﻿.cat-page-SEO.standard-light-border {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.cat-page-SEO .content-section {
    padding: 2rem;
}

.cat-page-SEO h2 {
    border-bottom: 2px solid #007ba4;
    padding-bottom: 8px;
    margin-bottom: 20px;
    color: #007ba4;
    font-weight: normal;
    font-size: 1.5rem;
}

.cat-page-SEO p {
    margin-bottom: 1.2rem;
    font-size: 13px;
    color: #555;
}

.cat-page-SEO ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.cat-page-SEO li {
    margin-bottom: 0.8rem;
    list-style-type: none;
    position: relative;
    padding-left: 1.2rem;
}

    .cat-page-SEO li:before {
        content: "?";
        color: #007ba4;
        font-weight: bold;
        position: absolute;
        left: 0;
    }

.cat-page-SEO a {
    color: #007ba4;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

    .cat-page-SEO a:hover {
        color: #007ba4;
        text-decoration: underline;
    }

.cat-page-SEO strong {
    color: #007ba4;
    font-weight: 600;
}

.cat-page-SEO .template-row-of-images {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

    .cat-page-SEO .template-row-of-images > div {
        flex: 1;
        min-width: 150px;
        max-width: 200px;
        text-align: center;
    }

    .cat-page-SEO .template-row-of-images img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

        .cat-page-SEO .template-row-of-images img:hover {
            transform: scale(1.05);
        }

.cat-page-SEO img[align="right"] {
    float: right;
    margin: 0 0 1rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 40%;
}

/* Responsive design */
@media (max-width: 768px) {
    .cat-page-SEO .content-section {
        padding: 1.5rem;
    }

    .cat-page-SEO .template-row-of-images {
        justify-content: center;
        gap: 1rem;
    }

        .cat-page-SEO .template-row-of-images > div {
            flex: 0 0 calc(50% - 1rem);
            max-width: calc(50% - 1rem);
        }

    .cat-page-SEO img[align="right"] {
        float: none;
        margin: 1rem auto;
        display: block;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cat-page-SEO .template-row-of-images > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
