/* =============================================
   LUNA MEDYA - Ana Stil Dosyası
   ============================================= */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.header {
    background: #fff;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.logo-text span {
    color: #c9536c;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #c9536c;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9536c;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
    position: relative;
    height: 600px;
    margin-top: 80px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    color: #fff;
    z-index: 10;
}

.slide-content h1 {
    font-size: 72px;
    font-weight: 300;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: background 0.3s ease;
    z-index: 20;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.5);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 8px;
    z-index: 20;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover {
    background: rgba(255,255,255,0.8);
}

.slider-dots .dot.active {
    background: #fff;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 80px 0;
}

.section-light {
    background: #f8f9fa;
}

.section-dark {
    background: #2c3e50;
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: #c9536c;
}

.section-title-line {
    width: 60px;
    height: 3px;
    background: #c9536c;
    margin: 0 auto;
}

/* =============================================
   HIZMETLERIMIZ (Services)
   ============================================= */
.services-box {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.services-icon {
    flex-shrink: 0;
}

.services-icon img {
    width: 150px;
}

.services-content h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.services-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background: #c9536c;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #b04459;
    color: #fff;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #333;
    color: #333;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #333;
    color: #fff;
}

/* =============================================
   HAKKIMIZDA (About) Section on Index
   ============================================= */
.about-section {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-content {
    flex: 1;
}

.about-content h3 {
    font-size: 14px;
    color: #c9536c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* =============================================
   CATEGORY SHOWCASE (Anasayfa Kategoriler)
   ============================================= */
.category-showcase {
    display: flex;
    gap: 60px;
    align-items: center;
}

.category-showcase.reverse {
    flex-direction: row-reverse;
}

.category-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.category-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-image:hover img {
    transform: scale(1.05);
}

.category-content {
    flex: 1;
}

.category-content h3 {
    font-size: 32px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.category-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #c9536c;
}

.category-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.category-content .btn-primary {
    display: inline-block;
    background: #c9536c;
    color: #fff;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-content .btn-primary:hover {
    background: #b04459;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 83, 108, 0.3);
}

/* Category Showcase Responsive */
@media (max-width: 992px) {
    .category-showcase {
        flex-direction: column !important;
        gap: 30px;
    }

    .category-image img {
        height: 280px;
    }

    .category-content {
        text-align: center;
    }

    .category-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .category-content h3 {
        font-size: 26px;
    }

    .category-image img {
        height: 220px;
    }
}

/* =============================================
   REFERANSLARIMIZ (References)
   ============================================= */
.references-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.references-title {
    text-align: center;
    margin-bottom: 40px;
}

.references-title h2 {
    font-size: 28px;
    color: #333;
    position: relative;
    display: inline-block;
}

.references-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #c9536c;
}

.references-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Slider Container */
.references-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.references-slider-container::before,
.references-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.references-slider-container::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.references-slider-container::after {
    right: 0;
    background: linear-gradient(to left, #e9ecef, transparent);
}

.references-slider {
    display: flex;
    gap: 40px;
    animation: scrollReferences 25s linear infinite;
    width: max-content;
    justify-content: center;
}

.references-slider:hover {
    animation-play-state: paused;
}

/* When few items - center them without animation */
.references-slider.no-scroll {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hide fade gradients when few items */
.references-slider-container:has(.no-scroll)::before,
.references-slider-container:has(.no-scroll)::after {
    display: none;
}

@keyframes scrollReferences {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reference-item {
    flex-shrink: 0;
    opacity: 0.6;
    transition: all 0.4s ease;
    max-width: 150px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.reference-item:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.reference-item img {
    max-height: 50px;
    max-width: 100%;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
    object-fit: contain;
}

.reference-item:hover img {
    filter: grayscale(0%);
}

.reference-title {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;

}

.reference-item:hover .reference-title {
    color: #333;
}

/* =============================================
   NELER YAPIYORUZ (What We Do)
   ============================================= */
.whatwedo-section {
    background: #f5f5f5;
    padding: 60px 0;
}

.whatwedo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.whatwedo-item {
    text-align: center;
    padding: 30px 20px;
}

.whatwedo-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatwedo-item .icon img {
    max-width: 100%;
    max-height: 100%;
}

.whatwedo-item h4 {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* =============================================
   ISTATISTIKLER (Statistics)
   ============================================= */
.stats-section {
    padding: 60px 0;
    background: #fff;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 48px;
    font-weight: 300;
    color: #333;
    line-height: 1;
}

.stat-item .label {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* =============================================
   NEDEN BIZ (Why Us)
   ============================================= */
.whyus-section {
    padding: 80px 0;
    background: #fff;
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.whyus-item {
    text-align: center;
    padding: 30px;
}

.whyus-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #c9536c;
}

.whyus-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.whyus-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* =============================================
   BASINDA BIZ (Press)
   ============================================= */
.press-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.press-header {
    text-align: center;
    margin-bottom: 40px;
}

.press-header h2 {
    font-size: 32px;
    color: #333;
}

.press-header a {
    color: #c9536c;
    font-size: 14px;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.press-item {
    background: #fff;
    padding: 30px;
}

.press-item h4 {
    font-size: 16px;
    color: #c9536c;
    margin-bottom: 15px;
    font-weight: 600;
}

.press-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* =============================================
   CTA (Call to Action)
   ============================================= */
.cta-section {
    padding: 50px 0;
    background: #f5f5f5;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-content h3 {
    font-size: 28px;
    color: #333;
    font-weight: 400;
}

.cta-content p {
    color: #666;
}

.btn-cta {
    background: #c9536c;
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-cta:hover {
    background: #b04459;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #fff;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    font-size: 14px;
    color: #666;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #c9536c;
}

.footer-right p {
    font-size: 14px;
    color: #999;
}

.footer-right a {
    color: #c9536c;
}

/* =============================================
   PAGE HEADER / BREADCRUMB
   ============================================= */
.page-header {
    background: linear-gradient(135deg, #3a4a5c 0%, #2c3e50 100%);
    padding: 80px 0 60px;
    margin-top: 80px;
    color: #fff;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.breadcrumb {
    margin-top: 20px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb span {
    color: #fff;
    margin: 0 10px;
}

/* =============================================
   HAKKIMIZDA PAGE (About Page)
   ============================================= */
.about-page-content {
    padding: 80px 0;
}

.about-company {
    max-width: 800px;
}

.about-company h2 {
    font-size: 32px;
    color: #333;
    font-weight: 600;
    margin-bottom: 25px;
    font-style: italic;
}

.about-company p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 15px;
}

.about-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #fff;
}

.team-section h2 {
    font-size: 32px;
    color: #333;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.team-member {
    display: flex;
    gap: 25px;
}

.team-member-photo {
    flex-shrink: 0;
}

.team-member-photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
}

.team-member-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.team-member-info .position {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.team-member-info .email {
    font-size: 14px;
    color: #c9536c;
    margin-bottom: 15px;
}

.team-member-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* =============================================
   ILETISIM PAGE (Contact Page)
   ============================================= */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #333;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail p {
    color: #555;
    line-height: 1.7;
}

.contact-detail a {
    color: #3498db;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-social a {
    color: #333;
    font-size: 20px;
    transition: color 0.3s ease;
}

.contact-social a:hover {
    color: #c9536c;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Form */
.contact-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c9536c;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-row input {
    flex: 1;
}

.contact-form button {
    background: #666;
    color: #fff;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #333;
}

/* Map */
.map-section {
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =============================================
   PROJELER PAGE (Projects Page)
   ============================================= */
.projects-page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    padding: 100px 0 80px;
    margin-top: 80px;
    text-align: center;
    color: #fff;
}

.projects-page-header h1 {
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.projects-breadcrumb {
    background: #f5f5f5;
    padding: 30px 0;
}

.projects-breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.projects-breadcrumb a {
    color: #666;
}

.projects-breadcrumb h2 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

/* Projects Content */
.projects-content {
    padding: 80px 0;
}

.projects-wrapper {
    display: flex;
    gap: 60px;
}

.projects-list {
    flex: 1;
}

.projects-list h3 {
    font-size: 24px;
    color: #3498db;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 30px;
}

.projects-list ul {
    margin-bottom: 30px;
}

.projects-list ul li {
    padding: 10px 0;
    color: #333;
    font-size: 16px;
}

.projects-list ul li::before {
    content: '>';
    margin-right: 10px;
    color: #999;
}

.projects-description {
    flex: 1;
}

.projects-description p {
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 42px;
    }

    .services-box {
        flex-direction: column;
        text-align: center;
    }

    .about-section {
        flex-direction: column;
    }

    .whatwedo-grid,
    .whyus-grid,
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .projects-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .whatwedo-grid,
    .whyus-grid,
    .press-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-slider {
        height: 350px;
    }

    .slide-content {
        left: 30px;
        right: 30px;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .references-grid {
        gap: 30px;
    }

    .reference-item {
        max-width: 80px;
    }

    .stat-item .number {
        font-size: 36px;
    }
}

/* =============================================
   FONT AWESOME ICONS (Fallback if not loaded)
   ============================================= */
.icon-production::before { content: '\f03d'; }
.icon-media::before { content: '\f130'; }
.icon-event::before { content: '\f073'; }
.icon-social::before { content: '\f099'; }
.icon-creative::before { content: '\f1fc'; }

/* =============================================
   CKEDITOR 5 - IMAGE STYLES
   ============================================= */
.image {
    display: table;
    clear: both;
    text-align: center;
    margin: 0.9em auto;
    min-width: 50px;
}

.image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-width: 100%;
    height: auto;
}

.image-inline {
    display: inline-flex;
    max-width: 100%;
    align-items: flex-start;
}

.image-inline picture {
    display: flex;
}

.image-inline picture,
.image-inline img {
    flex-grow: 1;
    flex-shrink: 1;
    max-width: 100%;
}

.image.image_resized {
    max-width: 100%;
    display: block;
    box-sizing: border-box;
}

.image.image_resized img {
    width: 100%;
}

.image.image_resized > figcaption {
    display: block;
}

/* Image alignment - Side (wrap text) */
.image-style-side,
.image-style-align-left,
.image-style-align-right {
    max-width: 50%;
}

.image-style-side {
    float: right;
    margin-left: 1.5em;
}

.image-style-align-left {
    float: left;
    margin-right: 1.5em;
}

.image-style-align-right {
    float: right;
    margin-left: 1.5em;
}

/* Image alignment - Block */
.image-style-block-align-left {
    margin-right: auto;
    margin-left: 0;
}

.image-style-block-align-center {
    margin-left: auto;
    margin-right: auto;
}

.image-style-block-align-right {
    margin-right: 0;
    margin-left: auto;
}

/* Image caption */
.image > figcaption {
    display: table-caption;
    caption-side: bottom;
    word-break: break-word;
    color: #666;
    background-color: #f7f7f7;
    padding: 0.6em;
    font-size: 0.75em;
    outline-offset: -1px;
    text-align: center;
}

/* Clearfix for floated images */
.category-text::after,
.about-company::after,
.ck-content::after {
    content: "";
    display: table;
    clear: both;
}
.icon-tv::before { content: '\f26c'; }
