.konya-main-wrapper {
background: #f8f9fa;
padding: 20px 0;
}
.konya-content-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 30px;
margin-top: 20px;
} .konya-main-content {
background: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
overflow: hidden;
} .konya-featured-section {
margin-bottom: 30px;
}
.konya-featured-post {
position: relative;
background: #ffffff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.konya-featured-image {
position: relative;
overflow: hidden;
}
.konya-featured-image img {
width: 100%;
height: 400px;
object-fit: cover;
transition: transform 0.3s ease;
}
.konya-featured-image:hover img {
transform: scale(1.05);
}
.konya-featured-content {
padding: 25px;
}
.konya-post-meta {
display: flex;
gap: 15px;
margin-bottom: 15px;
font-size: 13px;
color: #666;
}
.konya-post-meta i {
margin-right: 5px;
color: #007cba;
}
.konya-featured-title {
font-size: 28px;
font-weight: 700;
line-height: 1.3;
margin-bottom: 15px;
}
.konya-featured-title a {
color: #333;
text-decoration: none;
transition: color 0.3s ease;
}
.konya-featured-title a:hover {
color: #007cba;
}
.konya-featured-excerpt {
font-size: 16px;
line-height: 1.6;
color: #666;
} .konya-latest-posts {
background: #ffffff;
border-radius: 8px;
padding: 25px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.konya-section-title {
font-size: 22px;
font-weight: 700;
color: #333;
margin-bottom: 25px;
position: relative;
padding-bottom: 10px;
}
.konya-section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background: #007cba;
}
.konya-posts-list {
display: grid;
gap: 25px;
}
.konya-post-item {
display: flex;
gap: 20px;
padding: 20px;
background: #f8f9fa;
border-radius: 8px;
transition: all 0.3s ease;
}
.konya-post-item:hover {
background: #ffffff;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.konya-post-thumb {
flex-shrink: 0;
width: 150px;
height: 100px;
overflow: hidden;
border-radius: 6px;
}
.konya-post-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.konya-post-thumb:hover img {
transform: scale(1.1);
}
.konya-post-content {
flex: 1;
}
.konya-category {
background: #007cba;
color: white;
padding: 4px 8px;
border-radius: 4px;
font-size: 11px;
text-transform: uppercase;
font-weight: 600;
}
.konya-post-date {
font-size: 12px;
color: #999;
}
.konya-post-title {
font-size: 18px;
font-weight: 600;
line-height: 1.4;
margin: 10px 0;
}
.konya-post-title a {
color: #333;
text-decoration: none;
transition: color 0.3s ease;
}
.konya-post-title a:hover {
color: #007cba;
}
.konya-post-excerpt {
font-size: 14px;
color: #666;
line-height: 1.5;
margin-bottom: 10px;
}
.konya-read-more a {
color: #007cba;
text-decoration: none;
font-weight: 600;
font-size: 13px;
text-transform: uppercase;
}
.konya-read-more a:hover {
text-decoration: underline;
} .konya-sidebar {
display: flex;
flex-direction: column;
gap: 25px;
}
.konya-widget {
background: #ffffff;
border-radius: 8px;
padding: 25px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.konya-widget-title {
font-size: 18px;
font-weight: 700;
color: #333;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}
.konya-widget-title::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 30px;
height: 2px;
background: #007cba;
} .konya-popular-posts {
display: flex;
flex-direction: column;
gap: 15px;
}
.konya-popular-item {
display: flex;
gap: 15px;
padding: 15px;
background: #f8f9fa;
border-radius: 6px;
transition: background 0.3s ease;
}
.konya-popular-item:hover {
background: #e9ecef;
}
.konya-popular-number {
flex-shrink: 0;
width: 30px;
height: 30px;
background: #007cba;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 14px;
}
.konya-popular-content h4 {
font-size: 14px;
font-weight: 600;
line-height: 1.4;
margin-bottom: 5px;
}
.konya-popular-content a {
color: #333;
text-decoration: none;
transition: color 0.3s ease;
}
.konya-popular-content a:hover {
color: #007cba;
}
.konya-popular-date {
font-size: 12px;
color: #999;
} .konya-categories {
display: flex;
flex-direction: column;
gap: 10px;
}
.konya-category-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 15px;
background: #f8f9fa;
border-radius: 6px;
text-decoration: none;
color: #333;
transition: all 0.3s ease;
}
.konya-category-item:hover {
background: #007cba;
color: white;
}
.konya-category-count {
background: rgba(0,0,0,0.1);
color: inherit;
padding: 4px 8px;
border-radius: 10px;
font-size: 12px;
} @media (max-width: 768px) {
.konya-content-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.konya-featured-image img {
height: 250px;
}
.konya-featured-content {
padding: 20px;
}
.konya-featured-title {
font-size: 22px;
}
.konya-post-item {
flex-direction: column;
gap: 15px;
}
.konya-post-thumb {
width: 100%;
height: 200px;
}
.konya-latest-posts,
.konya-widget {
padding: 20px;
}
}
@media (max-width: 480px) {
.konya-main-wrapper {
padding: 15px 0;
}
.konya-featured-title {
font-size: 18px;
}
.konya-post-title {
font-size: 16px;
}
.konya-latest-posts,
.konya-widget {
padding: 15px;
}
}