.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 5px;
    font-family: 'Lato', 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.4;
    background-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-radius: 10px;
}

.content-wrapper section {
    margin-bottom: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.content-wrapper h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
    border-bottom: 1px solid #2980b9;
    padding-bottom: 3px;
}

.content-wrapper p, .content-wrapper ul {
    font-size: 15px;
    margin: 5px 0;
    color: #333;
}

.content-wrapper ul {
    padding-left: 15px;
}

.content-wrapper li {
    margin-bottom: 5px;
}

.content-wrapper article {
    margin-bottom: 10px;
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
}

.content-wrapper h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.suggestation-container {
    margin-top: 10px;
    background: #2c3e50;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.suggestion-header {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    grid-column: 1 / -1;
}

.suggestion-item {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suggestion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.suggestion-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.suggestion-content {
    border-radius: 8px;
}

.suggestion-image-container {
    width: 100%;
    padding-top: 60%;
    position: relative;
    border-bottom: 1px solid #2980b9;
}

.suggestion-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suggestion-text {
    padding: 5px;
}

.suggestion-title {
    font-size: 17px;
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 1200px) {
    .content-wrapper {
        padding: 10px;
    }
    .suggestation-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content-wrapper h2 {
        font-size: 20px;
    }
    .content-wrapper h3 {
        font-size: 16px;
    }
    .suggestation-container {
        grid-template-columns: 1fr;
    }
    .suggestion-header {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 5px;
    }
    .content-wrapper h2 {
        font-size: 18px;
    }
    .content-wrapper h3 {
        font-size: 15px;
    }
    .suggestion-title {
        font-size: 15px;
    }
}