.elementor-2114 .elementor-element.elementor-element-ba7e543{padding:3em 2em 3em 2em;}.elementor-2114 .elementor-element.elementor-element-0fe34a3 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-2114 .elementor-element.elementor-element-f747505{text-align:center;}.elementor-2114 .elementor-element.elementor-element-274b5fc{--spacer-size:30px;}.elementor-2114 .elementor-element.elementor-element-d4fe7ae.elementor-column > .elementor-widget-wrap{justify-content:center;}.elementor-2114 .elementor-element.elementor-element-d4fe7ae > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-2114 .elementor-element.elementor-element-d4fe7ae > .elementor-element-populated, .elementor-2114 .elementor-element.elementor-element-d4fe7ae > .elementor-element-populated > .elementor-background-overlay, .elementor-2114 .elementor-element.elementor-element-d4fe7ae > .elementor-background-slideshow{border-radius:48px 48px 48px 48px;}.elementor-2114 .elementor-element.elementor-element-d4fe7ae > .elementor-element-populated{margin:0em 1em 0em 0em;--e-column-margin-right:1em;--e-column-margin-left:0em;padding:0em 0em 0em 0em;}.elementor-2114 .elementor-element.elementor-element-be90e34.elementor-column > .elementor-widget-wrap{justify-content:center;}.elementor-2114 .elementor-element.elementor-element-be90e34 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-2114 .elementor-element.elementor-element-be90e34 > .elementor-element-populated, .elementor-2114 .elementor-element.elementor-element-be90e34 > .elementor-element-populated > .elementor-background-overlay, .elementor-2114 .elementor-element.elementor-element-be90e34 > .elementor-background-slideshow{border-radius:48px 48px 48px 48px;}.elementor-2114 .elementor-element.elementor-element-be90e34 > .elementor-element-populated{margin:0em 1em 0em 0em;--e-column-margin-right:1em;--e-column-margin-left:0em;padding:0em 0em 0em 0em;}.elementor-2114 .elementor-element.elementor-element-7178cfa.elementor-column > .elementor-widget-wrap{justify-content:center;}.elementor-2114 .elementor-element.elementor-element-7178cfa > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-2114 .elementor-element.elementor-element-7178cfa > .elementor-element-populated, .elementor-2114 .elementor-element.elementor-element-7178cfa > .elementor-element-populated > .elementor-background-overlay, .elementor-2114 .elementor-element.elementor-element-7178cfa > .elementor-background-slideshow{border-radius:48px 48px 48px 48px;}.elementor-2114 .elementor-element.elementor-element-7178cfa > .elementor-element-populated{margin:0em 1em 0em 0em;--e-column-margin-right:1em;--e-column-margin-left:0em;padding:0em 0em 0em 0em;}.elementor-2114 .elementor-element.elementor-element-a1a247b{--spacer-size:20px;}@media(max-width:1024px){.elementor-2114 .elementor-element.elementor-element-ba7e543{padding:3em 1em 3em 1em;}}@media(max-width:767px){.elementor-2114 .elementor-element.elementor-element-d4fe7ae > .elementor-element-populated{margin:0em 0em 0em 0em;--e-column-margin-right:0em;--e-column-margin-left:0em;}.elementor-2114 .elementor-element.elementor-element-be90e34 > .elementor-element-populated{margin:0em 0em 0em 0em;--e-column-margin-right:0em;--e-column-margin-left:0em;}.elementor-2114 .elementor-element.elementor-element-7178cfa > .elementor-element-populated{margin:0em 0em 0em 0em;--e-column-margin-right:0em;--e-column-margin-left:0em;}}@media(min-width:768px){.elementor-2114 .elementor-element.elementor-element-d4fe7ae{width:8%;}.elementor-2114 .elementor-element.elementor-element-be90e34{width:83.332%;}.elementor-2114 .elementor-element.elementor-element-7178cfa{width:8%;}}/* Start custom CSS for html, class: .elementor-element-21a2926 *//*
 * Plugin Name: Go Global Awards - Master Config
 * Description: Specific styles for the Media Mentions display.
 * Version: 1.0.3 (Reverted full card click, focused on icon/title links)
 * Author: Your Name/Go Global Awards Team
 */

/* Media Mentions Grid Layout */
.gga-media-mentions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Adjusted for 4 columns on wide screens */
    gap: 30px; /* Space between grid items */
    padding: 20px 0; /* Padding around the entire grid */
    justify-content: center; /* Centers the grid items if they don't fill the full width */
}

/* Individual Media Mention Card Styling */
.gga-mention-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    flex-direction: column; /* Stack header and details vertically */
    align-items: center; /* Center content horizontally within the card */
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    height: 100%; /* Ensures all cards in a row have the same height */
    /* position: relative; Removed as overlay is gone */
    overflow: hidden;
}

.gga-mention-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Removed: .gga-mention-card-link-overlay CSS rule */

/* Header section containing logo and icon */
.gga-mention-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between logo and icon if both are present */
    margin-bottom: 15px; /* Space below the header */
    flex-wrap: wrap;
    width: 100%; /* Ensure header takes full width for centering */
    /* position: relative; Removed unnecessary positioning */
    /* z-index: 2; Removed unnecessary positioning */
}

/* Wrapper for the publication logo (Featured Image) */
.gga-publication-logo-wrapper {
    flex-shrink: 0;
    line-height: 0;
}

/* Styling for the actual publication logo image */
.gga-publication-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 4px;
}

/* Styling for the main mention icon container */
.gga-mention-icon {
    font-size: 28px; /* Your specified size */
    color: #0073aa !important; /* IMPORTANT: Force icon color to WordPress blue */
    line-height: 1; /* Helps remove extra vertical space around the icon */
    display: inline-flex; /* Use flex to ensure icon is properly aligned */
    align-items: center;
    justify-content: center;
    /* position: relative; Removed unnecessary positioning */
    /* z-index: 2; Removed unnecessary positioning */
    /* Optional: Add background/border to match delegate icons if desired */
    /* background-color: #f0f0f0; */
    /* border-radius: 50%; */
    /* width: 50px; */
    /* height: 50px; */
}

/* Styling for the link wrapped around the main icon */
.gga-mention-icon a {
    color: inherit !important; /* IMPORTANT: Ensure link color matches parent icon color */
    text-decoration: none;
    display: flex; /* Use flex for the link to center the icon */
    align-items: center;
    justify-content: center;
}


/* Details section containing title and excerpt */
.gga-mention-details {
    flex-grow: 1;
    width: 100%; /* Ensures text content takes full width within the card */
    /* position: relative; Removed unnecessary positioning */
    /* z-index: 2; Removed unnecessary positioning */
}

/* Styling for the article title */
.gga-mention-title {
    font-size: 18px !important; /* Your specified size */
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 1.3;text-align:center;
}

/* Styling for the link within the article title */
.gga-mention-title a {
    text-decoration: none;
    color: #333 !important; /* IMPORTANT: Force title link color to dark grey */
    display: block; /* Makes the entire title block clickable */
}

.gga-mention-title a:hover {
    color: #0073aa !important; /* Force hover color */
}

/* Styling for the article excerpt (post content) */
.gga-mention-excerpt {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
    text-align: justify; /* Justify text for a clean block appearance */
}

/* Styling for an optional "Read More" button/link */
.gga-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #0073aa;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    /* position: relative; Removed unnecessary positioning */
    /* z-index: 2; Removed unnecessary positioning */
}

.gga-read-more-btn:hover {
    background-color: #005177;
    color: #fff;
}

/* Responsive adjustments for Media Mentions Grid */
@media (min-width: 1000px) {
    .gga-media-mentions-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 1200px) {
    .gga-media-mentions-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 992px) {
    .gga-media-mentions-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .gga-media-mentions-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 576px) {
    .gga-media-mentions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gga-mention-card {
        padding: 15px;
    }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-ba7e543 *//*
 * Plugin Name: Go Global Awards - Master Config
 * Description: Specific styles for the Media Mentions display.
 * Version: 1.0.5 (Updated for list view URL display)
 * Author: Your Name/Go Global Awards Team
 */

/* ========================================= */
/* --- Common / Base Styles (Applies to both grid and list) --- */
/* ========================================= */

/* Padding and spacing for the main grid/list container */
.gga-media-mentions-grid,
.gga-media-mentions-list {
    padding: 20px 0; /* Padding around the entire section */
    justify-content: center; /* Centers items in flex/grid */
    gap: 30px; /* Consistent gap between items */
}

/* Base styles for individual mention items (cards or list items) */
.gga-mention-card,
.gga-mention-list-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    padding: 20px; /* Consistent padding */
}

.gga-mention-card:hover,
.gga-mention-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* ========================================= */
/* --- Column/Grid View Specific Styles --- */
/* ========================================= */

.gga-media-mentions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* 4 columns on wide screens */
}

.gga-mention-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%; /* Ensures all cards in a row have the same height */
}

.gga-mention-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.gga-publication-logo-wrapper {
    flex-shrink: 0;
    line-height: 0;
}

.gga-publication-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 4px;
}

.gga-mention-icon {
    font-size: 28px; /* Your specified size */
    color: #0073aa !important; /* IMPORTANT: Force icon color to WordPress blue */
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gga-mention-icon a { /* Link around icon */
    color: inherit !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gga-mention-details {
    flex-grow: 1;
    width: 100%;
}

.gga-mention-title {
    font-size: 18px !important; /* Your specified size */
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 1.3;
}

.gga-mention-title a { /* Link around title */
    text-decoration: none;
    color: #333 !important;
    display: block;
}

.gga-mention-title a:hover {
    color: #0073aa !important;
}

.gga-mention-excerpt {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
    text-align: justify;
}

.gga-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #0073aa;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.gga-read-more-btn:hover {
    background-color: #005177;
    color: #fff;
}


/* ========================================= */
/* --- List View Specific Styles --- */
/* ========================================= */
.gga-media-mentions-list {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 10px; /* Smaller gap between list items */
}

.gga-mention-list-item {
    display: flex; /* Use flex for icon and text side-by-side */
    align-items: center; /* Vertically align icon and text */
    text-align: left; /* Align text to the left */
    padding: 10px 15px; /* Adjust padding for list item */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Lighter shadow for list items */
}

.gga-list-item-link { /* The link that wraps icon and text in list view */
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333; /* Default text color for the link */
    flex-grow: 1; /* Allow link to take available space */
    gap: 10px; /* Space between icon and text */
}

.gga-list-item-link:hover {
    color: #0073aa; /* Hover color for the link */
}

.gga-list-item-icon {
    font-size: 24px; /* Icon size for list item */
    color: #0073aa !important; /* Force icon color */
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.gga-list-item-icon i {
    line-height: 1; /* Ensure icon doesn't add extra height */
}

.gga-list-item-title { /* Kept this for reference/consistency if title is ever used here */
    font-size: 16px !important;
    font-weight: normal;
    line-height: 1.4;
    flex-grow: 1;
}

/* NEW: Styling for the URL text in list view */
.gga-list-item-url-text {
    font-size: 16px; /* Font size for the displayed URL */
    color: #555;    /* A slightly lighter color for the URL text */
    word-break: break-all; /* Ensures long URLs break correctly to prevent overflow */
    flex-grow: 1; /* Allows the URL text to take available space */
}


/* ========================================= */
/* --- Responsive Adjustments (for both grid and list) --- */
/* ========================================= */

@media (min-width: 1000px) {
    .gga-media-mentions-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 1200px) {
    .gga-media-mentions-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 992px) {
    .gga-media-mentions-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .gga-media-mentions-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    /* For list items on small tablets/large phones, stack icon and text */
    .gga-media-mentions-list .gga-list-item-link {
        flex-direction: column;
        align-items: flex-start; /* Align stacked items to the left */
        text-align: left; /* Ensure text alignment */
    }
}

@media (max-width: 576px) {
    .gga-media-mentions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gga-mention-card {
        padding: 15px;
    }
    .gga-media-mentions-list .gga-mention-list-item {
        padding: 10px;
    }
}/* End custom CSS */