/* Extracted from: /pages/deals/index.htm, /pages/opportunities/index.htm */
/* Specific Styles for Opportunities Page */
        .opportunities-hero {
            position: relative;
            background-color: #1a1a1a;
            padding: 60px 20px;
            border-radius: 20px;
            margin-bottom: 40px;
            overflow: hidden;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 100%);
            opacity: 0.9;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            max-width: 600px;
        }

        .hero-icon {
            background-color: var(--primary-color);
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(232, 80, 24, 0.3);
        }

        .hero-icon svg {
            width: 32px;
            height: 32px;
            stroke: white;
        }

        .hero-text h1 {
            font-size: 2rem;
            font-weight: 700;
            margin: 0 0 10px 0;
            color: white;
        }

        .hero-text p {
            color: #9ca3af;
            font-size: 1.1rem;
            margin: 0;
        }

        .hero-stats {
            position: relative;
            z-index: 1;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 15px 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            min-width: 200px;
        }

        .stat-info {
            flex: 1;
            text-align: right;
        }

        .stat-label {
            display: block;
            color: #9ca3af;
            font-size: 0.85rem;
            margin-bottom: 4px;
        }

        .stat-value {
            display: block;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .stat-icon {
            background-color: var(--primary-color);
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        /* Grid Layout */
        .opportunities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 60px;
        }

        .opportunity-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .opportunity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-color: var(--primary-color);
        }

        .card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .opportunity-card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-tags {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .tag {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 6px;
        }

        .tag-orange {
            background-color: #fff7ed;
            color: #c2410c;
        }

        .tag-red {
            background-color: #fef2f2;
            color: #b91c1c;
        }

        .card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 10px;
            line-height: 1.4;
            flex-grow: 1;
        }

        .card-footer {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .date-info span {
            display: block;
        }

        .date-label {
            font-size: 0.75rem;
            color: #999;
            margin-bottom: 2px;
        }

        .date-value {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
        }

        .btn-opportunity {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            background: white;
        }

        .btn-opportunity:hover {
            background-color: #fff5f2;
        }

        .btn-opportunity svg {
            width: 16px;
            height: 16px;
            margin-left: 6px;
            stroke: currentColor;
            fill: none;
        }

        .btn-expired {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border: 1px solid #e5e7eb;
            color: #9ca3af;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            background: #f9fafb;
            cursor: not-allowed;
        }

        .empty-state {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            color: var(--text-muted);
        }

        .empty-icon {
            width: 64px;
            height: 64px;
            background: #f3f4f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #d1d5db;
        }

        /* Mobile Responsive Adjustments */
        @media (max-width: 768px) {
            .opportunities-hero {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }

            .hero-content {
                flex-direction: column;
                align-items: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .stat-info {
                text-align: left;
            }
        }
