

 
       

        .re-header {
            padding: 60px 20px 40px;
            background-color: var(--bg-light);
        }

        .re-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .re-header p {
            font-size: 1rem;
            color: #666;
            max-width: 400px;
        }

        .re-featured {
            display: flex;
            align-items: stretch;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
        }

        .re-featured:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
            text-decoration: none;
            color: inherit;
        }

        .re-featured-img {
            flex: 0 0 50%;
            height: 300px;
            overflow: hidden;
        }

        .re-featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .re-featured:hover .re-featured-img img {
            transform: scale(1.05);
        }

        .re-featured-text {
            flex: 0 0 50%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .re-featured-img-only {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            height: 350px;
        }

        .re-featured-img-only img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .re-featured-text-only {
            display: block;
            text-decoration: none;
            color: inherit;
            padding: 0;
            transition: all 0.3s;
        }

        .re-featured-text-only:hover {
            text-decoration: none;
            color: inherit;
        }

        .re-featured-text-only h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            margin-top: 15px;
            color: var(--text-primary);
            line-height: 1.3;
            transition: color 0.3s;
        }

        .re-featured-text-only:hover h3 {
            color: var(--primary);
        }

        .re-tag {
            display: inline-block;
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 15px;
            width: fit-content;
        }

        .re-featured-text h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-primary);
            line-height: 1.3;
        }

        .re-info {
            font-size: 0.85rem;
            color: #999;
        }

        .re-wrapper {
            padding: 40px 0;
        }

        .re-wrapper h2 {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #999;
            margin-bottom: 30px;
        }

        .re-item {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
        }

        .re-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
            text-decoration: none;
            color: inherit;
        }

        .re-item-img {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .re-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .re-item:hover .re-item-img img {
            transform: scale(1.05);
        }

        .re-item-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .re-item-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-primary);
            line-height: 1.4;
        }

        .re-item-content p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
            flex-grow: 1;
        }

        .re-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
            font-size: 0.8rem;
            color: #999;
        }

        .re-btn {
            background-color: var(--primary);
            color: white;
            font-size: 0.65rem;
            padding: 6px 12px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s;
        }

        .re-btn:hover {
            background-color: #2d4373;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .re-header h1 {
                font-size: 1.8rem;
            }

            .re-featured {
                flex-direction: column;
            }

            .re-featured-img {
                flex: 0 0 auto;
                height: 200px;
                width: 100%;
            }

            .re-featured-text {
                flex: 0 0 auto;
                width: 100%;
                padding: 25px;
            }

            .re-featured-text h3 {
                font-size: 1.3rem;
            }
        }
