/* ========================================
   UKPTG GUIDES v3.0 - WITH IMAGE CARDS
   ======================================== */

/* REMOVE any text that appears above the header */
.ukptg-guides-1200 > h1:first-child,
.ukptg-guides-1200 > .entry-title:first-child,
.ukptg-guides-1200 > p:first-child {
    display: none !important;
}

/* Hide duplicate titles */
.ukg-title,
.page-title.ukg-title,
.entry-title {
    display: none !important;
}

/* Clean spacing */
.ukptg-guides-1200 {
    padding-top: 0 !important;
    margin-top: 0 !important;
    max-width: 1200px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Info box styling (like your screenshot) */
.ukptg-info-box {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    border: none;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ukptg-info-box .ukptg-info-content {
    padding: 20px;
}

.ukptg-info-box .ukptg-info-content h2,
.ukptg-info-box .ukptg-info-content h3 {
    margin: 0 0 10px 0;
    color: #0d3b59;
    font-size: 18px;
    font-weight: 600;
}

.ukptg-info-box .ukptg-info-content p {
    margin: 0;
    line-height: 1.6;
    color: #374151;
}

/* Sponsors box styling */
.ukptg-sponsors-box {
    margin-top: 20px;
}

.ukptg-sponsor-list {
    padding: 10px;
}

.ukptg-sponsor-list img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
    border-radius: 4px;
}

.ukptg-sponsor-list a {
    display: block;
    margin-bottom: 10px;
}

.ukptg-sponsor-list a:hover img {
    opacity: 0.85;
}

/* Search at bottom - CENTER aligned */
.ukptg-search-bottom {
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.ukptg-search-bottom .ukptg-search-form {
    display: inline-flex;
    gap: 8px;
    max-width: 500px;
}

.ukptg-search-form {
    display: flex;
    gap: 8px;
}

.ukptg-search-form input[type="search"] {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    min-width: 300px;
}

.ukptg-search-form button {
    padding: 10px 20px;
    background: #0d3b59;
    color: #fff;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.ukptg-search-form button:hover {
    background: #1a5682;
}

/* Section titles */
.ukptg-section {
    margin-bottom: 32px;
}

.ukptg-section-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
    color: #0d3b59;
}

/* 4-column grid on desktop - for categories with images */
.ukptg-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 1100px) {
    .ukptg-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ukptg-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ukptg-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Standard 4-column grid */
.ukptg-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 1200px) {
    .ukptg-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .ukptg-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .ukptg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .ukptg-grid {
        grid-template-columns: 1fr;
    }
}

/* Card styling - Updated for images */
.ukptg-card {
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.ukptg-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #0d3b59;
}

/* Card image container */
.ukptg-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f5f5f5;
}

.ukptg-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card content */
.ukptg-card-content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Card without image - add padding at top */
.ukptg-card:not(:has(.ukptg-card-img)) {
    padding: 12px;
}

.ukptg-card:not(:has(.ukptg-card-img)) .ukptg-card-content {
    padding: 0;
}

/* Legacy card link support */
.ukptg-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Card titles */
.ukptg-card h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: #111;
    /* Allow wrapping for cards with images */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ukptg-card:hover h3 {
    color: #0d3b59;
}

.ukptg-card .ukptg-count {
    display: inline-block;
    font-size: 12px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 12px;
    align-self: flex-start;
    flex-shrink: 0;
    margin-top: 8px;
}

/* Empty state */
.ukptg-empty {
    padding: 40px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 16px;
}

/* No results styling */
.ukptg-no-results {
    padding: 40px 20px;
    text-align: center;
    background: #f9fafb;
    border-radius: 8px;
}

.ukptg-no-results h4 {
    margin: 0 0 10px 0;
    color: #374151;
}

.ukptg-no-results p {
    margin: 0 0 15px 0;
    color: #6b7280;
}

.ukptg-resource-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ukptg-resource-links li a {
    display: inline-block;
    padding: 8px 16px;
    background: #0d3b59;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.ukptg-resource-links li a:hover {
    background: #1a5682;
}

/* Pagination */
.ukptg-pagination {
    margin-top: 24px;
    text-align: center;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.ukptg-pagination a,
.ukptg-pagination span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #0d3b59;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
}

.ukptg-pagination a:hover {
    background: #0d3b59;
    color: #fff;
    border-color: #0d3b59;
}

.ukptg-pagination span.current {
    background: #0d3b59;
    color: #fff;
    border-color: #0d3b59;
}

/* Sidebar widgets */
.ukptg-widget {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ukptg-widget-heading {
    font-size: 14px;
    color: #003d5c;
    margin: 0;
    padding: 12px 14px;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
}

.ukptg-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ukptg-link-list li {
    border-bottom: 1px solid #f0f0f0;
}

.ukptg-link-list li:last-child {
    border-bottom: none;
}

.ukptg-link-list a {
    display: block;
    padding: 10px 14px;
    color: #003d5c;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.2s ease;
}

.ukptg-link-list a:hover {
    background: #003d5c;
    color: #ffffff;
}

/* Fix for theme conflicts */
.ukptg-container .entry-header,
.ukptg-container h1.entry-title {
    display: none !important;
}

/* Responsive - sidebar on mobile */
@media (max-width: 1100px) {
    .ukptg-content-area {
        grid-template-columns: 1fr !important;
    }
    
    .ukptg-sidebar {
        order: -1;
        margin-bottom: 24px;
    }
    
    .ukptg-search-form input[type="search"] {
        min-width: 200px;
    }
}

/* ===========================================
   SINGLE GUIDE PAGE LAYOUT
   =========================================== */

/* Two-column layout for category and single pages */
.ukptg-content-area {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Container and sidebar layout */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px !important;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Title - H3 size (20px) */
.guide-title {
    font-size: 20px !important;
    margin: 0 0 20px 0 !important;
    color: #0d3b59 !important;
    font-weight: 700 !important;
}

/* Featured image - 300x300 floated left */
.guide-featured-image-left {
    float: left;
    width: 300px;
    margin: 0 20px 20px 0;
}

.guide-featured-image-left img {
    width: 300px !important;
    height: 300px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Content wraps around image */
.guide-content-wrap {
    overflow: auto;
}

/* Hide duplicate excerpt text */
body.single-guides p:first-of-type {
    display: none !important;
}

/* Mobile - stack sidebar below */
@media (max-width: 900px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   STYLED SIDEBAR & BOTTOM FEATURES
   ========================================== */

/* Sidebar widgets - varied elegant styling */
.ukptg-widget {
    background: white;
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
}

.ukptg-widget-heading {
    color: white;
    padding: 12px 16px;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

/* Quick Navigation - Clean blue */
.ukptg-widget:first-child {
    border: 1px solid #e0e0e0;
}

.ukptg-widget:first-child .ukptg-widget-heading {
    background: #0d3b59;
}

.ukptg-dropdown-wrapper {
    padding: 16px;
}

.ukptg-nav-select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background: white;
    cursor: pointer;
}

.ukptg-nav-select:hover {
    border-color: #0d3b59;
}

/* Newsletter - Light grey border with newsletter icon background */
.ukptg-newsletter {
    border: 2px solid #e5e7eb;
    background: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e5e7eb"><path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>') center/60% no-repeat;
}

.ukptg-newsletter .ukptg-widget-heading {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.ukptg-newsletter-form {
    padding: 16px;
}

.ukptg-newsletter-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 13px;
}

.ukptg-newsletter-form button {
    width: 100%;
    padding: 10px;
    background: #059669;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.ukptg-newsletter-form button:hover {
    background: #047857;
}

/* Popular Guides - Teal gradient */
.ukptg-popular-guides {
    border: 1px solid #e0e0e0;
    border-left: 4px solid #14b8a6;
}

.ukptg-popular-guides .ukptg-widget-heading {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.ukptg-popular-list {
    padding: 12px;
}

.ukptg-popular-item {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
}

.ukptg-popular-item:last-child {
    border-bottom: none;
}

.ukptg-popular-item:hover h4 {
    color: #0d3b59;
}

.ukptg-popular-num {
    width: 24px;
    height: 24px;
    background: #14b8a6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.ukptg-popular-item h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #333;
}

.ukptg-see-more {
    padding: 0 12px 12px;
}

.ukptg-see-more a {
    display: block;
    text-align: center;
    padding: 8px;
    color: #14b8a6;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border: 1px dashed #14b8a6;
    border-radius: 4px;
}

.ukptg-see-more a:hover {
    background: #f3f4f6;
    color: #7c3aed;
}

/* Featured Content - Purple accent */
.ukptg-featured-widget {
    border: 1px solid #e0e0e0;
    border-left: 4px solid #8b5cf6;
}

.ukptg-featured-widget .ukptg-widget-heading {
    background: #8b5cf6;
}

.ukptg-thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 12px;
}

.ukptg-thumb-item {
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ddd;
    display: block;
}

.ukptg-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ukptg-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: 600;
}

/* Popular Categories - Orange accent */
.ukptg-popular-widget {
    border: 1px solid #e0e0e0;
    border-left: 4px solid #f97316;
}

.ukptg-popular-widget .ukptg-widget-heading {
    background: #f97316;
}

/* Spotlight Widget - Elegant featured box */
.ukptg-spotlight {
    border: 2px solid #0d3b59;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.ukptg-spotlight .ukptg-widget-heading {
    background: #0d3b59;
}

.ukptg-spotlight-content {
    padding: 20px;
    text-align: center;
}

.ukptg-spotlight-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 12px;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.ukptg-spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ukptg-spotlight-name {
    font-size: 16px;
    font-weight: 700;
    color: #0d3b59;
    margin: 0 0 6px 0;
}

.ukptg-spotlight-role {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 12px 0;
}

.ukptg-spotlight-cta {
    display: inline-block;
    padding: 8px 20px;
    background: #0d3b59;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.ukptg-spotlight-cta:hover {
    background: #0a2d42;
}

.ukptg-link-list {
    padding: 16px;
    margin: 0;
    list-style: none;
}

.ukptg-link-list li {
    margin-bottom: 8px;
}

.ukptg-link-list a {
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 6px 0;
}

/* Blue hover, NO BOUNCE */
.ukptg-link-list a:hover {
    color: #0d3b59;
}

/* See Also - styled with small thumbnail images */
.ukptg-see-also {
    margin: 40px 0 30px 0;
}

.ukptg-see-also-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ukptg-see-also-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.ukptg-see-also-card:hover {
    border-color: #0d3b59;
    box-shadow: 0 2px 8px rgba(13,59,89,0.15);
}

.ukptg-see-also-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Small thumbnail images for color */
.ukptg-see-also-image {
    height: 120px;
    background: #f9fafb;
    overflow: hidden;
}

.ukptg-see-also-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ukptg-see-also-card h3 {
    padding: 14px 16px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
}

.ukptg-see-also-card:hover h3 {
    color: #0d3b59;
}

/* Directory Tabs - colorful gradient background */
.ukptg-directory-section {
    margin: 40px 0 30px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #fef3c7 50%, #fee2e2 100%);
    padding: 30px;
    border-radius: 8px;
}

.ukptg-directory-section .ukptg-section-title {
    color: #0d3b59;
}

.ukptg-tabs-wrapper {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ukptg-tabs-nav {
    display: flex;
    background: linear-gradient(to right, #0ea5e9, #8b5cf6, #ec4899);
    border-bottom: none;
}

.ukptg-tab-btn {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    position: relative;
    transition: all 0.2s;
}

/* Colorful hover */
.ukptg-tab-btn:hover {
    background: rgba(255,255,255,0.2);
}

.ukptg-tab-btn.active {
    background: white;
    color: #0d3b59;
    border-bottom-color: transparent;
}

.ukptg-tabs-content {
    padding: 20px;
}

.ukptg-tab-pane {
    display: none;
}

.ukptg-tab-pane.active {
    display: block;
}

.ukptg-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ukptg-directory-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.ukptg-directory-card:hover {
    border-color: #0d3b59;
    box-shadow: 0 2px 6px rgba(13,59,89,0.15);
}

.ukptg-directory-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ukptg-directory-image {
    height: 100px;
    background: #f9fafb;
    overflow: hidden;
}

.ukptg-directory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ukptg-directory-card h4 {
    padding: 12px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.ukptg-directory-card:hover h4 {
    color: #0d3b59;
}

/* Guide cards - blue border hover, softer shadow */
.ukptg-card {
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.ukptg-card:hover {
    border-color: #0d3b59;
    box-shadow: 0 2px 6px rgba(13,59,89,0.12);
}

/* Responsive */
@media (max-width: 900px) {
    .ukptg-see-also-grid,
    .ukptg-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ukptg-see-also-grid,
    .ukptg-directory-grid {
        grid-template-columns: 1fr;
    }
}

/* Intro Header */
.ukptg-intro-header {
    background: #f0f2f5;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.ukptg-intro-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.ukptg-intro-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* A-Z Filter - Matching KB style */
.ukptg-az-filter {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
    margin: 6px 0 20px 0;
}

.ukptg-az-btn,
.ukptg-az-filter a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #0d3b59;
    background: #fff;
    font-weight: 600;
    font-size: 11px;
    transition: all 0.2s;
}

.ukptg-az-btn:hover,
.ukptg-az-filter a:hover {
    background: #0d3b59;
    color: #fff;
    border-color: #0d3b59;
}

.ukptg-az-btn.active,
.ukptg-az-filter a.active {
    background: #0d3b59;
    color: #fff;
    border-color: #0d3b59;
}

/* Breadcrumb styling */
.ukptg-breadcrumb {
    font-size: 13px;
    padding: 12px 0;
    margin-bottom: 10px;
    color: #666;
}

.ukptg-breadcrumb a {
    color: #0066cc;
    text-decoration: none;
}

.ukptg-breadcrumb a:hover {
    text-decoration: underline;
}

.ukptg-breadcrumb .sep {
    margin: 0 6px;
    color: #999;
}

.ukptg-breadcrumb .current {
    color: #333;
    font-weight: 500;
}

.ukptg-browse-item {
    border-bottom: 1px solid #e5e7eb;
}

.ukptg-browse-item:last-child {
    border-bottom: none;
}

.ukptg-browse-item a {
    display: block;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
}

.ukptg-browse-item a:hover {
    background: #f5f5f5;
    color: #0d3b59;
}

/* KB notice for fallback results */
.ukptg-kb-notice {
    padding: 10px 15px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    margin-bottom: 15px;
    border-radius: 0 4px 4px 0;
}

.ukptg-kb-notice p {
    margin: 0;
    color: #92400e;
    font-size: 14px;
}

.ukptg-kb-card {
    border-left: 3px solid #f59e0b;
}

/* ============================================
   MATCH RELATED CONTENT HOVER EXACTLY
   Card bounces, image does NOT move separately
   ============================================ */
.ukptg-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}
.ukptg-card:hover {
    border-color: #0d3b59 !important;
    box-shadow: 0 4px 12px rgba(13, 59, 89, 0.15) !important;
    transform: translateY(-3px) !important;
}
.ukptg-card .ukptg-card-img,
.ukptg-card .ukptg-card-img img,
.ukptg-card:hover .ukptg-card-img,
.ukptg-card:hover .ukptg-card-img img {
    transform: none !important;
    transition: none !important;
}
