body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.cml-media-library {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cml-media-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.cml-media-item h3 {
    font-size: 1.5em;
    margin: 0 0 10px;
}

.cml-media-item .cml-date {
    font-size: 0.9em;
    color: #666;
}

.cml-media-item .cml-description {
    margin: 10px 0;
}

.cml-media-item .cml-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.cml-media-item .cml-link:hover {
    background-color: #005177;
}

.cml-category {
    font-weight: bold;
    margin-bottom: 10px;
}

        .press-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            min-height: 280px;
            border: 2px solid transparent;
        }

        .press-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #ca006c 0%, #8b0048 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .press-card:hover::before {
            transform: scaleX(1);
        }

        .press-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(202, 0, 108, 0.15);
            border-color: #ca006c;
        }

        .service-icon-wrapper {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ca006c 0%, #8b0048 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(202, 0, 108, 0.3);
            transition: all 0.3s ease;
        }

        .press-card:hover .service-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 40px rgba(202, 0, 108, 0.4);
        }

        .service-icon {
            font-size: 2.5em;
            color: white;
        }

        .service-title {
            font-size: 1.6em;
            color: #333;
            font-weight: 700;
            margin: 0;
            line-height: 1.3;
        }

        .press-back {
            padding: 40px 20px;
            min-height: 280px;
            opacity: 0;
            transition: opacity 0.4s ease;
            background: #ffffff;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            justify-content: start;
        }

        .press-card .press-back {
            opacity: 1;
            animation: slideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .press-back h4 {
            color: #ca006c;
            font-size: 1.8em;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 0px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .press-back h4 i {
            font-size: 1.3em;
        }

        .press-back p {
            color: #555;
            font-size: 1.1em;
            line-height: 1.5;
            margin-bottom: 0;
        }

        .click-hint {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: white;
            color: #ca006c;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85em;
            font-weight: 700;
            box-shadow: 0 3px 10px rgba(202, 0, 108, 0.2);
            opacity: 0;
            transition: opacity 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: none;
        }

        .cml-press-meta {
            margin-bottom: 20px;
            font-size: 13px;
            font-weight: 700;
        }

        .cml-press-description {
            font-size: 15px;
        }

        .cml-press-host {
            font-size: 14px;
            font-weight: 700;
        }

        .cml-press-link{
            margin-top: 20px;
        }
        
        h2.cml-term-title {
            font-family: "Merriweather", Sans-serif;
            margin-top: 30px;
            font-size: 2em;
        }

        .cml-press-wrapper {
            margin: 70px 0;
        }

        @media (max-width: 991px) {
            .services-section {
                padding: 70px 30px;
            }

        }

        @media (max-width: 767px) {
            .press-card {
                min-height: 240px;
            }

            .service-front {
                padding: 35px 25px;
                min-height: 240px;
            }

            .service-icon-wrapper {
                width: 80px;
                height: 80px;
                margin-bottom: 20px;
            }

            .service-icon {
                font-size: 2em;
            }

            .service-title {
                font-size: 1.3em;
            }

            .press-back {
                padding: 30px 25px;
                min-height: 240px;
            }

            .press-back h4 {
                font-size: 1.3em;
            }

            .press-back p {
                font-size: 1em;
            }
        }