/* -----------------------------------------------------------
           Specs Center List Template Styling
        ----------------------------------------------------------- */
        .specs-center-section {
            padding: 100px 0 120px;
            background-color: #f7f8fa;
        }

        .specs-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid #eee;
        }

        .specs-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--thm-primary);
        }

        .specs-card__img {
            position: relative;
            overflow: hidden;
            padding-top: 65%;
            /* 16:9 Aspect Ratio-ish */
            background: #f1f1f1;
        }

        .specs-card__img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .specs-card:hover .specs-card__img img {
            transform: scale(1.1);
        }

        .specs-card__content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .specs-card__title {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 15px;
            color: #1c2434;
            line-height: 1.3;
        }

        .specs-card__text {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .specs-card__btn {
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            color: var(--thm-primary);
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .specs-card__btn i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .specs-card:hover .specs-card__btn {
            color: #1c2434;
        }

        .specs-card:hover .specs-card__btn i {
            transform: translateX(5px);
        }

        .specs-header-title {
            max-width: 800px;
            margin: 0 auto 60px;
            text-align: center;
        }