/* RESPONSIVE GRID SYSTEM =============================================================================  */


/* =========================================================
   TOC: LAYOUT Primitives - .grid, .stack.
   ========================================================= */

/* =========================================================
   TOC: COMPONENTS buttons .btn, .form-row, .helptext .imput, .cards .alerts .table  .tablescroll, 
   ========================================================= */


/* =========================================================
   TOC: FORMS label, input, select, text area
   ========================================================= */

/* =========================================================
   TOC: UTILITIES
examples: 
.sr-only
.hidden, .visually-hidden
.text-center, .text-right
.mt-2, .mb-3 (only if you really use spacing utilities consistently)
.nowrap, .truncate
   ========================================================= */


/* =========================================================
   TOC: LEGACY
   ========================================================= */

html {
  font-size: 100%; /* 16px browser default */
}

/* =========================================================
   TOC: DESIGN TOKENS
   ========================================================= */
:root {
  /* fonts */
  --font-head: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
	
  --brand-primary: #163F6B;        /* match your buttons/nav */
  --brand-success: #2F6B0F;
  --brand-warning: #8A6A00;
  --brand-error:   #B0000A;
	
	--btn-primary-bg: #153F68;
  --btn-primary-bg-hover: #1d4f82;
  --btn-primary-text: #fff;
  --btn-primary-border: #153F68;


  /* type scale */
  --fs-0: 0.75rem;   /* 12px */
  --fs-1: 0.8125rem; /* 13px */
  --fs-2: 0.875rem;  /* 14px */
  --fs-3: 1rem;      /* 16px */
  --fs-4: 1.125rem;  /* 18px */
  --fs-5: 1.25rem;   /* 20px */
  --fs-6: 1.5rem;    /* 24px */
  --fs-7: 1.8rem;    /* ~29px */
  --fs-8: 2.25rem;   /* 36px */
 	--fs-9: 2.5rem;   /* 40px */

  /* spacing 
	i.e.
margin-bottom: var(--sp-4);
padding: var(--sp-3);
gap: var(--sp-2);
	
	*/
	
	/* spacing scale */

  --sp-1: 0.25rem;  /* 4px  */
  --sp-2: 0.5rem;   /* 8px  */
  --sp-3: 0.75rem;  /* 12px */
  --sp-4: 1rem;     /* 16px */
  --sp-5: 1.25rem;  /* 20px */
  --sp-6: 1.5rem;   /* 24px */
  --sp-7: 2rem;     /* 32px */
  --sp-8: 2.5rem;   /* 40px */
  
	

	/* =====================================================
     FORM TOKENS (GLOBAL)
     ===================================================== */

  --field-bg: #fff;
  --field-bd: rgba(15, 23, 42, 0.18);
  --field-bd-hover: rgba(15, 23, 42, 0.28);
  --field-bd-focus: rgba(22, 63, 107, 0.55);
  --field-text: #111827;
  --field-muted: rgba(17, 24, 39, 0.65);

  --field-radius: 8px;
  --field-pad-y: 0.6rem;
  --field-pad-x: 0.85rem;
  --field-font: 0.875rem;
  --field-line: 1.2;
	
	
  /* Alert surfaces */
  --alert-info-bg:    rgba(22, 63, 107, 0.10);
  --alert-success-bg: rgba(47, 107, 15, 0.12);
  --alert-warning-bg: rgba(250, 197, 28, 0.18);
  --alert-error-bg:   rgba(216, 0, 12, 0.12);

  /* Base UI */
  --alert-text: rgba(20, 40, 60, 0.92);
  --alert-muted: rgba(20, 40, 60, 0.72);

  --alert-radius: 14px;
  --alert-shadow: 0 8px 20px rgba(20, 40, 60, 0.06);
	
	
	 /* Surface radius (cards, panels, containers) — keep these consistent */
  --radius-surface: 6px;
}


/* =========================================================
   TOC: BASE / RESET buttons, inputs, select text area, img
   ========================================================= */

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: var(--fs-2);
	font-optical-sizing: auto;
  line-height: 1.3;
  color: #333;
  background: #F6F8FB;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* =========================================================
   TOC: TYPOGRAPHY - h1, p, ul/ol, .text small . text-muted
   ========================================================= */


/* ==========================================================================
   HEADINGS (TOKEN-BASED — ROBOTO WITH MORE WEIGHT)
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  margin: 0;
  padding: 0;
  line-height: 1.2;
  letter-spacing: 0;
  color: #444;
}

/* Primary hierarchy */
h1 {
  font-size: var(--fs-6);   /* 24px */
  font-weight: 600;
  margin-bottom: var(--sp-5);
}

h2 {
  font-size: var(--fs-5);   /* 20px */
  font-weight: 600;
  color: #10437C;
  margin-bottom: var(--sp-4);
}

/* Secondary hierarchy */
h3 {
  font-size: var(--fs-4);   /* 18px */
  font-weight: 500;
  color: #1865BD;
  margin-bottom: var(--sp-3);
}

h4 {
  font-size: var(--fs-3);   /* 16px */
  font-weight: 500;
  color: var(--brand);
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
}

/* Tertiary */
h5 {
  font-size: var(--fs-2);   /* 14px */
  font-weight: 500;
  color: #10437C;
  margin-bottom: var(--sp-2);
}

h6 {
  font-size: var(--fs-2);   /* 14px */
  font-weight: 500;
  color: #41A85F;
  margin-bottom: var(--sp-2);
}

/* ==========================================================================
   MOBILE HEADING SCALE (ROBOTO)
   ========================================================================== */

@media (max-width: 768px) {

  h1 {
    font-size: var(--fs-5);  /* 20px */
    line-height: 1.25;
  }

  h2 {
    font-size: var(--fs-4);  /* 18px */
    line-height: 1.25;
  }

  h3 {
    font-size: var(--fs-3);  /* 16px */
    line-height: 1.3;
  }

  h4,
  h5 {
    font-size: var(--fs-2);  /* 14px */
    line-height: 1.35;
  }

}






/*  TYPOGRAPHY  ============================================================================= */

p, ol, ul, dl, address { 
  margin-bottom: 1.5rem;
  font-size: inherit;
  line-height: inherit;
}



p.introtext {
font-family:  MuseoSlab100, 'lucida sans unicode', 'lucida grande', 'Trebuchet MS', verdana, arial, helvetica, helve, sans-serif;
font-size : 2.5em; /* 40 / 16 */
color: #333;
line-height: 1.4em;
letter-spacing: -1px;
margin-bottom: 0.5em;
}


p.handwritten {
font-family:  HandSean, 'lucida sans unicode', 'lucida grande', 'Trebuchet MS', verdana, arial, helvetica, helve, sans-serif; 
font-size: 1.375em; /* 24 / 16 */
line-height: 1.8em;
margin-bottom: 0.3em;
color: #666;
}

p.center {
text-align: center;
}


/*Small Font */

p.maintextsmall, .maintextsmall {
     font-size: var(--fs-0); 
	line-height: 1.4; 
}


.maintextsmallbold { 
	font-size: var(--fs-0); 
	font-weight: 700; 
}



/* <span class="italic"> */
.italic { 
  font-style: italic; 
}

/* <span class="bold"> */
.bold { font-weight: 700; }
b, strong { font-weight: 700; }

ul, 
ol { 
margin : 0 0 1.5em 0; 
padding : 0 0 0 24px; }

li ul, 
li ol { 
margin : 0;
font-size : 1em; /* 16 / 16 = 1 */ }

dl, 
dd { 
margin-bottom : 1.5em; }

dt { 
font-weight : normal; }


hr { 
display : block; 
margin : 1em 0; 
padding : 0;
height : 1px; 
border : 0; 
border-top : 1px solid #ccc;
}

small { 
	font-size: var(--fs-2); 
}

sub, sup { 
font-size : 75%; 
line-height : 0; 
position : relative; 
vertical-align : baseline; }

sup { 
top : -.5em; }

sub { 
bottom : -.25em; }

.subtext {
  color: #666;
  }

/* LINKS =============================================================================  */

a {
  color: #2969B0;
  text-decoration: underline;
  transition: color .2s ease, text-decoration-color .2s ease;
}

a:hover,
a:focus-visible {
  color: #163F6B;
  text-decoration-color: currentColor;
}

a:visited {
  color: #2969B0;
}


*, *::before, *::after {
  box-sizing: border-box;
}




/* IMAGES ============================================================================= */

img {
border : 0;
max-width: 100%;
height: auto;
}

img.floatleft { float: left; margin: 0 10px 0 0; }
img.floatright { float: right; margin: 0 0 0 10px; }


/* =========================================================
   COMPONENTS – TABLES
   ========================================================= */

.table-wrap {
  width: 100%;
  overflow-x: auto;                 /* mobile safety */
  -webkit-overflow-scrolling: touch;
}

/* Base table */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  background-color: #fff;
}

/* Caption */
caption {
  caption-side: top;
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #163F6B;                   /* GolfTrips navy */
}

/* Header */
thead th {
  text-align: left;
  font-weight: 600;
  color: #163F6B;
  background-color: #F2F5F9;        /* subtle gray-blue */
  border-bottom: 2px solid #AAAFB5;
  padding: 0.6rem 0.75rem;
  white-space: nowrap;
}

/* Body cells */
tbody td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid #E5E7EB;
  vertical-align: top;
}

/* Zebra striping */
tbody tr:nth-child(even) {
  background-color: #F9FAFB;
}

/* Hover (desktop only feel) */
tbody tr:hover {
  background-color: #EEF3F8;
}


/* Links inside tables */
table a {
  color: #163F6B;
  text-decoration: none;
  font-weight: 500;
}

table a:hover {
  text-decoration: underline;
}

/* Numeric columns (optional utility) */
.td-num {
  text-align: right;
  white-space: nowrap;
}

/* Compact variant */
.table--compact th,
.table--compact td {
  padding: 0.35rem 0.5rem;
  font-size: 0.9rem;
}

/* =========================================================
   FORMS — GLOBAL SYSTEM
   ========================================================= */

/* Base */
form {
  margin: 0;
}

/* ---------------------------------------------------------
   Fieldsets & Legends (section structure)
---------------------------------------------------------- */

fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 32px;
}

legend {
  margin: 0 0 16px;
  padding: 0;
  font-size: var(--fs-4);
  font-weight: 700;
  line-height: 1.3;
  color: #153F68;
}

/* ---------------------------------------------------------
   Labels
---------------------------------------------------------- */

label {
  display: block;
	font-size: var(--fs-3);
  font-weight: 600;
  cursor: pointer;
  color: #3D5771;
}

/* Inline labels (checkboxes, radios, etc.) */
label.inline {
  display: inline;
  margin: 0;
}

/* Secondary label text */
label span {
  color: #666;
  font-size: 0.9em;
}

/* Right-aligned helper text inside labels */
label span.right {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
}

/* Disabled labels */
label.disabled {
  color: #ccc;
  cursor: not-allowed;
}

/* ---------------------------------------------------------
   Form Layout Helpers
---------------------------------------------------------- */

/* Two-column grid (used for short fields) */


/* Single form row (label + field stacked) */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
	margin-bottom: 10px;
}

/* Long-question blocks */
.qblock {
  margin: 0 0 28px;
}

/* Compact question blocks (rapid-fire) */
.qblock--compact {
  margin-bottom: 18px;
}

/* Helper / instructional text */
.form-help {
  margin: 0 0 24px;
  font-size: var(--fs-1);
  line-height: 1.0;
  color: #556;
}

/* ---------------------------------------------------------
   Honey Pot - Hidden field - captcha - added to travel/index.cfm form (others)
---------------------------------------------------------- */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}



/* Legacy help text under inputs - replace div=form-help in future */
#adminform .maintextsmall,
#interviewform .maintextsmall,
#golfform .maintextsmall,
#quicksearchform .maintextsmall {
  display: block;
  margin-top: 6px;
  font-size: var(--fs-2);
  line-height: 1.45;
  color: #556;
}




/* ================================
   FORM BASE (GLOBAL) — INPUTS (TOKEN-DRIVEN)
   ================================ */

input,
select,
textarea {
  font-family: var(--font-body);
  font-size: var(--field-font);
  line-height: var(--field-line);
  color: var(--field-text);
  box-sizing: border-box;
}

/* Text-like controls only */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: var(--field-pad-y) var(--field-pad-x);
  border-radius: var(--field-radius);
  border: 1px solid var(--field-bd);
  background: var(--field-bg);
  color: var(--field-text);
  transition: border-color .12s ease, box-shadow .12s ease;
}

/* Hover */
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="search"]:hover,
input[type="url"]:hover,
input[type="password"]:hover,
input[type="number"]:hover,
input[type="date"]:hover,
select:hover,
textarea:hover {
  border-color: var(--field-bd-hover);
}

/* ================================
   FORM BASE (GLOBAL) — BUTTONS (TOKEN-DRIVEN)
   ================================ */

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  font-family: var(--font-body);
  font-size: var(--field-font);
  line-height: var(--field-line);
  font-weight: 700;
  cursor: pointer;
  box-sizing: border-box;

  padding: var(--field-pad-y) calc(var(--field-pad-x) + 0.15rem);
  border-radius: var(--field-radius);
   background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: 1px solid var(--btn-primary-border);
  transition: border-color .12s ease, box-shadow .12s ease, transform .08s ease;
}

/* Hover */
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
  background: var(--btn-primary-bg-hover);
  border-color: var(--btn-primary-bg-hover);
}

button:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active {
  transform: translateY(1px);
}

/* If you want reset buttons to stay "not scary blue" */
input[type="reset"]{
  background: #6B7280;
  border-color: #6B7280;
}
input[type="reset"]:hover{
  background: #4B5563;
  border-color: #4B5563;
}


/* ================================
   FORM FOCUS (GLOBAL)
   ================================ */

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(22, 63, 107, 0.35);
  outline-offset: 2px;
  border-color: #163F6B;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  border-color: #163F6B;
}


/* Placeholder text (global) */
input::placeholder,
textarea::placeholder {
  color: #bbb;
  opacity: 1; /* important for Firefox */
	font-size : .875em; 
  line-height : 1.4;
}


input[type="checkbox"], 
input[type="radio"] { 
box-sizing: border-box; }

input[type="search"] { 
  box-sizing: border-box;
}



  input[disabled="disabled"], input.disabled{
  color:#999;
  background:#f5f5f5;
  -moz-box-shadow:inset 0px 0px 2px #ddd;
  -webkit-box-shadow:inset 0px 1px 2px #ddd;
  box-shadow:inset 0px 1px 2px #ddd;
  }


/* ---------- Form validity (don’t scream at users on load) ---------- */

/* Base: do nothing by default */
input,
textarea,
select {
  box-shadow: none;
}

/* Progressive enhancement: show invalid ONLY after interaction */
input:user-invalid,
textarea:user-invalid,
select:user-invalid {
  box-shadow: 0 0 0 2px rgba(255, 0, 0, .25);
}

/* Fallback: show invalid when the field is focused and invalid */
input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
  border-color: #b0000a;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, .25);
}

/* Optional: subtle valid feedback after focus */
input:focus:valid,
textarea:focus:valid,
select:focus:valid {
  box-shadow: 0 0 0 2px rgba(0, 128, 0, .18);
}

/* No box-shadow fallback */
.no-boxshadow input:focus:invalid,
.no-boxshadow textarea:focus:invalid,
.no-boxshadow select:focus:invalid {
  background-color: #ffecec;
  border-color: #b0000a;
}

/* ================================
   FORM ROW NORMALIZATION (NO HTML CHANGES)
   Makes your existing <p> rows behave like .form-row
   ================================ */

#quicksearchform p,
#golfform p,
#adminform p,
#interviewform p,
#courselogin p,
#adminlogin p {
  margin: 0 0 12px;
  display: flow-root; /* clears floats safely */
}

/* =====================================================
   FORM UTILITIES (OPT-IN)
   Use these classes in new/updated forms
   ===================================================== */

/* A form section/container */
.form {
  max-width: 960px;          /* optional: keeps forms from stretching too wide */
}

/* Grid wrapper */
.form-grid {
  display: grid;
  gap: 14px;
}

/* Common grid variants */
.form-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ---------------------------------------------------------
   Responsive
---------------------------------------------------------- */
/* Tablet */
@media (max-width: 1024px) {
  .form-grid--3,
  .form-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ---------------------------------------------------------
   FORM GRID COLUMN SPANS
   ---------------------------------------------------------
   Utility classes for making a single form row span
   multiple columns inside a CSS Grid (.form-grid).

   These ONLY apply to elements that are direct children
   of a .form-grid container.

   Examples:
   - Use .form-row--span-2 inside a 2- or 3-column grid
     to make a field wider (ex: Name + Email layout)
   - Use .form-row--span-3 inside a 3-column grid
     to create a full-width row (ex: textareas)
---------------------------------------------------------- */

/* Span across two grid columns */
.form-row--span-2 {
  grid-column: span 2;
}

/* Span across three grid columns (full-width in 3-col grids) */
.form-row--span-3 {
  grid-column: span 3;
}



/* A single field (label + control) */
.field {
  display: grid;
  gap: 6px;
}

/* Span full row inside a grid */
.field--full {
  grid-column: 1 / -1;
}

/* Inline checkbox/radio row */
.field--check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.field--check label {
  margin: 0;
  font-weight: 600;
  cursor: pointer;
}

/* Help text under a field */
.field__help {
  font-size: 0.875rem;
  color: #667a90;
}

/* Textareas should be real textareas (global-ish but safe) */
textarea {
  width: 100%;
  max-width: 100%;
  resize: vertical;
  min-height: 140px; /* default; adjust per page if needed */
}

/* Actions row (submit buttons) */
.form-actions {
  display: flex;
  gap: 10px;
  /* justify-content: flex-end; 
  align-items: center;*/
}

/* On mobile, make actions stack nicely */
@media (max-width: 768px) {
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
}



/* ---------------------------------------------------------
   FORM INTRO / TRANSITION COPY
   ---------------------------------------------------------
   Used directly below the page <h1> to transition users
   from page content into the form itself.

   Typical usage:
   <h1>Page Title</h1>
   <div class="form-intro">
     <p class="form-intro__lead">...</p>
     <p class="form-intro__sub">...</p>
   </div>
---------------------------------------------------------- */

.form-intro {
  margin: 16px 0 28px;
}

.form-intro__lead {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #163F6B; /* matches primary brand color */
}

.form-intro__sub {
  margin: 0;
  font-size: 0.95rem;
  color: #556; /* softer supporting text */
}




/*  MAIN LAYOUT ============================================================================= */

#skiptomain { display: none; }

#wrapper {
  width: 100%;
  position: relative;
  text-align: left;
}

#topheadcontainer div {
    clear: both;
    width: 100%;
    font-size: 0.8125em;
    max-width: 92.3em;
    margin: 0 auto;
    padding: 10px 3px 10px 0px;
    position: relative;
    color: #153F68;
    text-align: right;
    background: #E5E5E5;
}

#topheadcontainer {
background: #E5E5E5;
width: 100%;
    
}
  
 #topheadcontainer a 
 { color: #153F68;
 text-decoration: none;
  }
  
  

  #headcontainer {
    width: 100%;
	background:#fff;
  }

    header {
      clear: both;
      width: 100%;
      font-size: 0.8125em; /* 13 / 16 */
      max-width: none;
      margin: 0 auto;
      padding: 10px 0px 10px 0px;
      position: relative;
      color: #000;
      text-align: center;
    }

 @media screen and (min-width: 1400px) {
        header {
            clear: both;
            width: 1400px !important;
        }
     }
 
   /* Logo */

#logo
{
    float: left;
    height: auto;
	width: 400px;
    margin: 0;
    padding-left: 2px;
    padding-top: 5px;
	margin-bottom: 6px;
    color: #FFFFFF;
}

@media (min-width: 1200px) {
    
    #logo
{
   width: 400px;
}
    
}

@media (max-width: 992px) {
    
    #logo
{
   width: 350px;
}
    
}

@media (max-width: 768px) {
    
    #logo
{
  width: 300px
}
    
}

@media (max-width: 480px) {
  #logo {
    width: 250px;
  }
}



/* Top Banner */

#topbanner {
  float: right;
  width: 728px;
  height: 90px;
  margin: 6px 0 6px 0;   /* tight vertical spacing */
  padding: 0;            /* no internal padding */
}


  #headernavcontainer {
    width: 100%;
    background:#333;
  }
  
  #headernav {
        clear: both;
        width: 80%; /* 1000px / 1250px */
        font-size: 0.8125em; /* 13 / 16 */
        max-width: 92.3em; /* 1200px / 13 */
        margin: 0 auto;
        color: #333;
        position: relative;
      }
    
  .headernav {
        clear: both;
        width: 80%; /* 1000px / 1250px */
        font-size: 0.8125em; /* 13 / 16 */
        max-width: 92.3em; /* 1200px / 13 */
        margin: 0 auto;
        color: #333;
        
      }
    

  #maincontentcontainer {
    width: 100%;
  }

    .standardcontainer {
      
    }
    
    .darkcontainer {
      background: rgba(102, 102, 102, 0.05);
    }

   .lightcontainer {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
}

      
  @media (max-width: 1200px) {
.lightcontainer {
 width: 96%;
}}


.white-container {
  padding: var(--sp-3);
  background-color: #fff;
  border-radius: var(--radius-surface); /* was 3px */
  border: 1px #E5E5E5 solid;
  margin-bottom: var(--sp-3);
}

    
     .maincontent {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;

  /* typography safety */
  font-size: inherit;
  line-height: inherit;
}




/*  SECTIONS  ============================================================================= */

.section {
  clear: both;
  padding: 0px;
  margin: 0px;
}

  
/*  CODE  ============================================================================= */

pre.code {
  padding: 0;
  margin: 0;
  font-family: monospace;
  white-space: pre-wrap;
  font-size: 1.1em;
}

strong.code {
  font-weight: normal;
  font-family: monospace;
  font-size: 1.2em;
}


/*  EXAMPLE  ============================================================================= */

#example .col {
  background: #ccc;
  background: rgba(204, 204, 204, 0.85);

}



/*  CALCUATIONS  ============================================================================= */

#calculated .col {
  background: rgba(204, 204, 204, 0.85);
  padding: 1em 0;

}
/*  Page Title - Background  ============================================================================= */

.page-title {
    background:#f2f4f7;
    height:250px;
	text-align:center;
	position: relative;
	display: flex;
    padding-top:50px;
	background-size:cover;
	background-position:center;
	width: 100%;
}
.page-title.image-title:before{
	position:absolute;
	content:"";
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-color: rgba(0, 0, 0, 0.5); /* black @ 50% */
}
.page-titlecontainer {width: 100%;}
.page-title-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
	position:relative;
}
.image-title .page-title-wrap>*{
	color:#ffffff;
}
.image-title h2{
	font-size:40px;
	font-weight:600;
    line-height: 1.0em;
}
.image-title p span{
	font-style:italic;
}

@media (max-width: 768px) {
.page-title {
   height:100px;
}
    .image-title h2{
	font-size:20px;
	font-weight:600;
}
}



/*  SCREENS  ============================================================================= */

.siteimage {
  max-width: 90%;
  padding: 5%;
  margin: 0 0 1em 0;
  background: transparent url(/images/stripe-bg.png);
  transition: background 0.3s ease;
}

.siteimage:hover {
  background: #bbb url(/images/stripe-bg.png);
  position: relative;
  top: -2px;
  
}

/*  COLUMNS  ============================================================================= */

.twocolumns{
  -moz-column-count: 2;
  -moz-column-gap: 2em;
  -webkit-column-count: 2;
  -webkit-column-gap: 2em;
  column-count: 2;
  column-gap: 2em;
  }

/* ==========================================================================
   BUTTONS (site-wide)
   ========================================================================== */
 /* instead of wrapping in <p> */
.btn-row {
  display: flex;
  gap: 0.75rem;        /* spacing between buttons */
  margin-top: 1.25rem;
  flex-wrap: wrap;    /* safe on mobile */
}

.btn {
  --btn-bg: #fff;
  --btn-border: #cfd8e3;
  --btn-text: #153F68;
  --btn-bg-hover: #f6f8fb;
  --btn-border-hover: #bfcad8;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-text);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;

  transition: background .12s ease,
              border-color .12s ease,
              transform .12s ease,
              box-shadow .12s ease;
}

/* IMPORTANT: lock link states so visited doesn't turn blue */
.btn,
.btn:link,
.btn:visited {
  color: var(--btn-text);
  text-decoration: none;
}

.btn:hover {
  background: var(--btn-bg-hover);
  border-color: var(--btn-border-hover);
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid #163F6B;
  outline-offset: 2px;
}

/* Sizes */
.btn--sm { padding: 5px 10px; border-radius: 9px; font-size: .75rem; }
.btn--lg { padding: 10px 14px; border-radius: 12px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

/* Primary (matches section-header2) */
.btn--primary,
.btn--primary:link,
.btn--primary:visited {
  --btn-bg: #2969b0;
  --btn-border: #2969b0;
  --btn-text: #fff;
  --btn-bg-hover: #1f5ea2;
  --btn-border-hover: #1f5ea2;
}

/* Secondary (soft blue) */
.btn--secondary,
.btn--secondary:link,
.btn--secondary:visited {
  --btn-bg: #E9F0F7;
  --btn-border: #c7d7ea;
  --btn-text: #153F68;
  --btn-bg-hover: #dbe9f6;
  --btn-border-hover: #b9cfe7;
}

/* Ghost (minimal) */
.btn--ghost,
.btn--ghost:link,
.btn--ghost:visited {
  --btn-bg: transparent;
  --btn-border: transparent;
  --btn-text: #2969b0;
  --btn-bg-hover: rgba(41,105,176,.08);
  --btn-border-hover: transparent;
}

/* Danger */
.btn--danger,
.btn--danger:link,
.btn--danger:visited {
  --btn-bg: #c0392b;
  --btn-border: #c0392b;
  --btn-text: #fff;
  --btn-bg-hover: #a93226;
  --btn-border-hover: #a93226;
}

/* Disabled */
.btn[aria-disabled="true"],
.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   BUTTON VARIANTS — SUCCESS & NEUTRAL
   ========================================================================== */

/* Success (green) */
.btn--success,
.btn--success:link,
.btn--success:visited {
  --btn-bg: #41A85F;           /* section-header4 green */
  --btn-border: #41A85F;
  --btn-text: #fff;
  --btn-bg-hover: #36904f;     /* darker green */
  --btn-border-hover: #36904f;
}

/* Neutral (grey, non-destructive) */
.btn--neutral,
.btn--neutral:link,
.btn--neutral:visited {
  --btn-bg: #6B7280;           /* modern neutral grey */
  --btn-border: #6B7280;
  --btn-text: #fff;
  --btn-bg-hover: #4B5563;     /* darker grey */
  --btn-border-hover: #4B5563;
}


/* ==========================================================================
   OUTLINE BUTTONS — FILL ON HOVER (CLEAN + FIXED)
   ========================================================================== */

/* Base outline behavior */
.btn--outline,
.btn--outline:link,
.btn--outline:visited {
  background: transparent;
  color: var(--btn-text);
  border: 1px solid var(--btn-border);
}

/* Shared hover / focus (fills button) */
.btn--outline:hover,
.btn--outline:focus {
  background: var(--btn-border);
  border-color: var(--btn-border);
  color: #fff;
}

/* --------------------------------------------------------------------------
   OUTLINE PRIMARY (blue)
   -------------------------------------------------------------------------- */
.btn--outline-primary,
.btn--outline-primary:link,
.btn--outline-primary:visited {
  --btn-border: #2969b0;
  --btn-text: #2969b0;
}

/* --------------------------------------------------------------------------
   OUTLINE SUCCESS (green)
   -------------------------------------------------------------------------- */
.btn--outline-success,
.btn--outline-success:link,
.btn--outline-success:visited {
  --btn-border: #41A85F;
  --btn-text: #41A85F;
}

/* --------------------------------------------------------------------------
   OUTLINE DANGER (red)
   -------------------------------------------------------------------------- */
.btn--outline-danger,
.btn--outline-danger:link,
.btn--outline-danger:visited {
  --btn-border: #c0392b;
  --btn-text: #c0392b;
}

/* --------------------------------------------------------------------------
   OUTLINE NEUTRAL (grey)
   -------------------------------------------------------------------------- */
.btn--outline-neutral,
.btn--outline-neutral:link,
.btn--outline-neutral:visited {
  --btn-border: #6B7280;
  --btn-text: #6B7280;
}


/* ==========================================================================
   TOOLBAR + BUTTON GROUPS
   ========================================================================== */

.toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;

  padding: 10px;
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
}

/* IMPORTANT: make groups actually group */
.btn-group {
  display: inline-flex;         /* <-- this is likely your missing piece */
  align-items: center;
  flex-wrap: nowrap;
}

/* If you want a “segmented control” look */
.btn-group .btn {
  border-radius: 0;
  margin: 0;
}

/* first / last rounding */
.btn-group .btn:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.btn-group .btn:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* collapse borders */
.btn-group .btn + .btn {
  margin-left: -1px;
}

/* keep hover above neighbors */
.btn-group .btn:hover,
.btn-group .btn:focus-visible {
  position: relative;
  z-index: 2;
}

/* active state (works for <a>, <button>, etc.) */
.btn-group .btn.is-active,
.btn-group .btn[aria-pressed="true"] {
  z-index: 3;
  background: #E9F0F7;
  border-color: #2969b0;
  color: #2969b0;
  box-shadow: inset 0 0 0 1px rgba(41,105,176,.15);
}

/* optional: vertical divider style instead of overlap */
.btn-group--divider .btn + .btn {
  margin-left: 0;
  border-left-color: transparent;
}
.btn-group--divider .btn {
  border-radius: 0;
}
.btn-group--divider .btn:first-child { border-radius: 10px 0 0 10px; }
.btn-group--divider .btn:last-child  { border-radius: 0 10px 10px 0; }

/* If something is sitting on top of your toolbar, this helps */
.toolbar,
.toolbar * {
  position: relative;
  z-index: 5;
}


/*  GLOBAL OBJECTS ============================================================================= */

.breaker { clear: both; }

.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}


.floatleft {
    float: left;
}

.floatright {
    float: right;
}




/*Ad frame - 350x200*/
.ad-frame
{
    padding: 8px;
	background-color: #fff;
	border-radius: 3px;
	border: 1px #E5E5E5 solid;
	margin-bottom: 8px;
  	text-align: center;
    display: flex;
justify-content: center;
}

.ad-frame h4
{
    font-size: var(--fs-5);
	font-weight: bold;
}

.ad-frame img
{
    padding: 0px;
    margin: 0px;
}

.ad-frame a img {
   border: 0px none;
}
/*End ad frame*/

/*Ad frame - 350x200*/
.ad-frame-admin
{
    padding: 8px;
    background-color: #fff;
	border-radius: 3px;
	border: 1px #E5E5E5 solid;
    margin-bottom: 8px;
}
.ad-frame-admin img
{
    padding: 0px;
    margin: 0px;
}

.ad-frame-admin a img {
   border: 0px none;
    margin: 0px auto;
    display: block;
}

.ad-frame-admin h4
{
    font-size: var(--fs-5);
	font-weight: bold;
}


/*End ad frame*/

.ad-frame2
{
    padding: 5px;
    background-color: #ECF6EF;
    margin-bottom: 8px;
    text-align: center;
}
.ad-frame2 img
{
    padding: 0px;
    margin: 0px;
}

.ad-frame2 h4
{
    text-align: left;
    color: #41A85F;
    font-size: 21px;
    font-weight: bold;
}


.ad-frame2 a img {
   border: 0;
}

.ad-frame-medianet
{
    padding: 5px;
    background-color: #97C86C;
    margin-bottom: 8px;
  border:1px solid #699D3B;
  text-align: center;
}
.ad-frame-medianet img
{
    padding: 0px;
    margin: 0px;
}

.ad-frame-medianet a img {
   border: 0;
}

.ad-frame-600
{
   padding: 8px;
	background-color: #fff;
	border-radius: 3px;
	border: 1px #E5E5E5 solid;
	margin-bottom: 8px;
  	text-align: center;
}
.ad-frame-600 img
{
    padding: 0px;
    margin: 0px;
}

.ad-frame-600 a img {
   border: 0;
}

/*Ad frame - 350x200*/
.ad-frame3
{
    padding: 8px;
    background-color: #fff;
	border-radius: 3px;
	border: 1px #E5E5E5 solid;
    margin-bottom: 8px;
}
.ad-frame3 img
{
    padding: 0px;
    margin: 0px;
}

.ad-frame3 a img {
   border: 0px none;
    margin: 0px auto;
}

.ad-frame3 h4 {
  	font-size: 21px;
	font-weight: bold;
}
/*End ad frame*/

.rating_post {
background:none repeat scroll 0 0 #FAFBBF;
border:1px solid #F0DC7C;
margin:15px 0;
padding:10px;
overflow: hidden; 
}


.rating_post2 {
background:none repeat scroll 0 0 #EAEAEA;
border:1px solid #A8A8A8;
margin:15px 0;
padding:10px;
}

.largearticleimagecaption {
background-color: rgba(0, 0, 0, 0.5); /* black @ 50% */
bottom: 8px;
color: rgb(250, 250, 250);
font-size: var(--fs-5);
font-weight: bold;
position: absolute;
text-align: left;
left: 3px;
right: 3px;
padding: 3%;
display: block;
}

@media (max-width: 700px)  {
 .largearticleimagecaption {
font-size: var(--fs-1);
font-weight: normal;	}
}

.largearticleimage {
/* background: none repeat scroll 0 0 #FAFAFA; */
/* border: 1px solid #E5E5E5; */
/* left: 0; */
padding: 3px;
position: relative;
width:100%;
}

.largearticleimage img {
  width:100%;
}





/*Clearfix*/
.clear
{
    font-size: 1px;
    line-height: 1px;
    height: 1px;
    clear: both;
}

::selection { 
background : rgb(23,119,175); 
color : rgb(250,250,250); 
text-shadow : none; }

button, 
input[type="button"], 
input[type="reset"], 
input[type="submit"] { 
  -webkit-appearance: none;
  appearance: none;}



/* stateTable - table */
.statetable {
  width: 100%;
  overflow-y: auto;
  margin: 0 0 1em;
}

.statetable::-webkit-scrollbar
{
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
}

.statetable::-webkit-scrollbar-thumb
{
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, .3);
}



#statetable tr { background: #fff; }
#statetable tr.altrow { background: #F9F9F9;  }
#statetable th, #statetable td {
  text-align: left;     
  border-width: 1px;
    border-style: solid;
}
#statetable th {
  color: #fff;
  background: #999;
  padding: .7em 1em;  
    border-color: #EFEFEF #EFEFEF #EFEFEF #EFEFEF;
  font-size:1.1em;
}
#statetable td {
  border-color: #EFEFEF;  
  padding: .6em .6em; 
} 


#statetable a:link, #statetable a:visited { 
  text-decoration: underline;
  color: #344C64; 
}
#statetable a:hover {
  text-decoration: none;
}

#resultstable a img
{
    border: 0 none;
    padding: 0;
    vertical-align: top;
}



#resultstable a_button{
text-decoration: none;
}

#resultstable tr td
{
    vertical-align: top;
}


/* end - table */

/* IMAGE ARTICLE FRAME */
.articlepicframe {
  margin-right: 20px;
  float: left;
  padding: 5px;
  border: 1px solid #bcbcbc;
}

.articlepic {
  border: 1px solid #bcbcbc;
  margin: 0px;
  padding: 0px;
}

.articlepic a img
{
    border: none 0;
  margin: 0px;
  padding: 0px;
}


.articlepicright {
  margin-right: 20px;
  float: right;
  padding: 5px;
  border: 1px solid #bcbcbc;
}

.articlepicright {
  border: 1px solid #bcbcbc;
}

.bullets p
{
	font-size: 1.1em;
	
}


.bullets ul{
padding-left: 30px;
display:block;
list-style-type:disc;
}

.bullets li {
    margin: 3px 0px 3px 5px;
    padding: 3px;
    }
  
 /* ================================
   FORMS – SPECIAL FORMS (LAYOUT + CONTAINER ONLY)
   Keep global input/select/textarea styles as the single source of truth.
   ================================ */

/* =====================================================
   TRAVEL FORM — SCOPED OVERRIDES
   ===================================================== */

.form--travel {
  max-width: 980px;
  margin: 0 auto;
}

/* Optional visual polish ONLY for travel form */
.form--travel fieldset {
  margin-bottom: 28px;
}

.form--travel legend {
  font-size: var(--fs-4);
  font-weight: 800;
  color: #153F68;
  border-bottom: 2px solid rgba(21,63,104,.2);
  padding-bottom: 8px;
}

/* Normalize legacy <p> rows if any remain */
#travelform p {
  margin: 0 0 16px;
}




/* =========================================================
   QUICK SEARCH FORM – MODERN (CSS ONLY, NO HTML CHANGES)
   ========================================================= */

#quicksearchform {
  margin: 4px;
}

/* each <p> acts as a row */
#quicksearchform p {
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  grid-template-columns: 60px 1fr; /* label + field */
  gap: 10px;
  align-items: center;
  color: #3D5771;
}

/* labels */
#quicksearchform label {
  font-weight: 700;
  font-size: var(--fs-2);
  color: #2969B0;
  margin: 0;
  padding: 0;
}

/* fields – layout only */
#quicksearchform input,
#quicksearchform select,
#quicksearchform textarea {
  width: 100%;
  margin: 0;
  font-weight: 500;
  color: #3D5771;
}

/* focus color only (global focus ring still applies) */
#quicksearchform input:focus,
#quicksearchform select:focus,
#quicksearchform textarea:focus {
  color: #3D5771;
}

/* divider */
#quicksearchform hr {
  grid-column: 1 / -1;
  border: none;
  border-top: 1px dashed #E5E5E5;
  margin: 6px 0;
}

/* submit button row */
#quicksearchform p:last-child {
  grid-template-columns: 60px 1fr;
}

/* button */
#quicksearchform input.button {
  grid-column: 2;
  width: min(220px, 100%);
  min-height: 40px;
  font-size: var(--fs-2);
  padding: 10px 14px;
  color: #fff;
  background: #2969B0;
  border: 1px solid #2969B0;
  border-radius: 6px;
  cursor: pointer;
}




/* =========================================================
   GOLF SEARCH FORM – gdl-contact-form variant
   Keep list behavior, normalize layout, stop restyling inputs.
   ========================================================= */

#golfform.gdl-contact-form ol {
  padding: 0;
  margin: 0;
}

#golfform.gdl-contact-form li {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

/* Make each LI behave like a row */
#golfform.gdl-contact-form li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px;
  align-items: center;
}

/* labels inside LI (if present) */
#golfform.gdl-contact-form label {
  margin: 0;
}

/* fields: layout only */
#golfform.gdl-contact-form input,
#golfform.gdl-contact-form select,
#golfform.gdl-contact-form textarea {
  width: 100%;
  margin: 0;
  max-width: 100%;
  display: block;
  color: #3D5771;
}

/* textarea sizing only */
#golfform.gdl-contact-form textarea {
  min-height: 150px;
}

/* button */
#golfform.gdl-contact-form .button {
  display: inline-block;
  cursor: pointer;
  padding: 10px 14px;
  font-size: var(--fs-1);
  font-weight: 700;
  color: #fff;
  background-color: #3389D7;
  border: 1px solid #246096;
  border-bottom-width: 2px;
  border-radius: 6px;
}

/* error (leave as-is) */
#golfform.gdl-contact-form div.error {
  color: #F00;
  display: none;
}

/* mobile stack for gdl-contact-form */
@media (max-width: 640px) {
  #golfform.gdl-contact-form li {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
  }
}


/* =========================================================
   ADMIN FORM – MODERN (layout-first, relies on global inputs)
   ========================================================= */

#adminform {
  margin-bottom: 8px;
  padding: 10px;
  border: 1px solid #F0F0F0;
  background: #f8f8f8;
  border-radius: 6px;
}

/* Treat each <p> as one row (label + field) */
#adminform p {
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  grid-template-columns: 155px 1fr; /* label column + field column */
  gap: 12px;
  align-items: center;
  color: #3D5771;
}

/* labels */
#adminform label {
  font-weight: 700;
  font-size: var(--fs-2);
  color: #153F68;
  margin: 0;
  padding: 0;
}

#adminform p img {
  grid-column: 1 / -1;
  max-width: 100%;
  height: auto;
}


/* checkbox inside label should not stretch */
#adminform label input[type="checkbox"] {
  width: auto;
  margin-right: 6px;
}

/* fields (layout only) */
#adminform input,
#adminform select,
#adminform textarea {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  color: #3D5771;
}

/* divider spans both columns */
#adminform hr {
  grid-column: 1 / -1;
  border: none;
  border-top: 1px dashed #E5E5E5;
  margin: 20px;
  height: 1px;
}

/* select arrow (keep your embedded svg) */
#adminform select {
  padding-right: 34px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" width="14" height="14"><path d="M201.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 274.7 86.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"/></svg>');
  background-position: right 8px center;
  background-repeat: no-repeat;
}

/* focus color only (your global focus ring still applies) */
#adminform input:focus,
#adminform select:focus,
#adminform textarea:focus {
  color: #3D5771;
  border-color: #153F68;
}

/* button: sits under the field column */
#adminform input.button {
  grid-column: 2;
  width: min(260px, 100%);
  margin: 6px 0 0;
  padding: 10px 14px;
  color: #fff;
  background: #153F68;
  border-radius: 6px;
  min-height: 40px;
  border: 1px solid #153F68;
  cursor: pointer;
}

/* headings inside form */
#adminform h4 {
  background: #153F68;
  color: #ffffff;
  font-size: var(--fs-3);
  margin: 15px 0;
  padding: 10px;
  border-radius: 6px;
}

/* tiny helper text inside label */
#adminform p label span.maintextsmall {
	font-size: var(--fs-1);
  display: inline-block;
}

/* validation */
#adminform label.error {
  grid-column: 2;
  color: red;
  padding-left: 0;
  font-size: 10px;
  font-weight: 400;
  background: none;
  border: 0;
  display: inline;
}

#adminform input.error {
  background: none;
}

/* mobile stack */
@media (max-width: 768px) {
  #adminform p {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
  }

  #adminform input.button,
  #adminform label.error {
    grid-column: 1;
    width: 100%;
  }
}

/* =========================================================
   STAR RATING (leave behavior, remove floats conflicts)
   ========================================================= */

#adminform .star-rating,
#adminform .star-rating2,
#adminform .star-rating3 {
  direction: ltr;
  display: inline-block;
  padding: 20px 0;
}

#adminform .star-rating input[type=radio],
#adminform .star-rating2 input[type=radio],
#adminform .star-rating3 input[type=radio] {
  display: none;
}

#adminform .star-rating label,
#adminform .star-rating2 label,
#adminform .star-rating3 label {
  color: #bbb;
  font-size: var(--fs-4);
  padding: 0;
  cursor: pointer;
  transition: all .3s ease-in-out;
  width: 40px;
}

/* hover/selected */
#adminform .star-rating label:hover,
#adminform .star-rating label:hover ~ label,
#adminform .star-rating input[type=radio]:checked ~ label,
#adminform .star-rating2 label:hover,
#adminform .star-rating2 label:hover ~ label,
#adminform .star-rating2 input[type=radio]:checked ~ label,
#adminform .star-rating3 label:hover,
#adminform .star-rating3 label:hover ~ label,
#adminform .star-rating3 input[type=radio]:checked ~ label {
  color: #f2b600;
}

/* targeted fix: date input */
#adminform input[type="date"] {
  min-height: 42px;
}


/* =========================================================
   INTERVIEW FORM — PAGE / FORM SPECIFIC
   Targets: <form id="interviewform">
   ========================================================= */

#interviewform {
  max-width: 980px;
  margin: 0 auto;
}

/* Fieldsets: NO box/card — just spacing */
#interviewform .form-fieldset,
#interviewform fieldset {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  margin: 0 0 34px;
}

/* Legend: words + divider line */
#interviewform legend {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0 0 10px;

  font-size: var(--fs-4);
  font-weight: 800;
  color: #163F6B;

  border-bottom: 2px solid rgba(22, 63, 107, 0.20);
}

/* Increase spacing between rows/blocks */
#interviewform .form-grid {
  margin-bottom: 26px;
}

#interviewform .form-row {
  gap: 8px;
  margin-bottom: 12px; /* helps when stacked */
}

#interviewform .qblock {
  margin: 0 0 22px;
}

#interviewform .qblock--compact {
  margin: 0 0 14px;
}


/* Make textareas feel better for long answers */
#interviewform textarea {
  min-height: 120px;
  resize: vertical;
}

/* Compact rapid-fire textareas */
#interviewform .qblock--compact textarea {
  min-height: 88px;
}


/* Helper text (.form-help) — make it look intentional */
#interviewform .form-help {
  background: rgba(22, 63, 107, 0.06);
  border-left: 4px solid rgba(22, 63, 107, 0.45);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 0 0 18px;
}

/* HR spacing (if you still use hr anywhere) */
#interviewform .form-hr,
#interviewform hr {
  border: 0;
  border-top: 1px solid rgba(20, 40, 60, 0.12);
  margin: 26px 0;
}

/* Submit button — match admin blue */
#interviewform .btn-submit,
#interviewform input[type="submit"],
#interviewform button[type="submit"] {
  background: #153F68;
  color: #fff;
  border: 1px solid #153F68;

  padding: 12px 18px;
  border-radius: 6px; /* matches admin */
  font-weight: 700;
  font-size: var(--fs-3);
  cursor: pointer;
}

#interviewform .btn-submit:hover,
#interviewform input[type="submit"]:hover,
#interviewform button[type="submit"]:hover {
  background: #1d4f82;
  border-color: #1d4f82;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  #interviewform {
    padding: 0 12px;
  }
}


/* Course Login form */
#courselogin {
  padding: 15px 25px 10px 20px;
  border: 1px solid #F0F0F0;
  background: #f8f8f8;
  border-radius: 6px;
}

#courselogin p {
  padding: 5px 0;
  margin: 0;
  color: #7BA857;
}

#courselogin label {
  font-weight: 700;
  color: #3D5771;
  font-size: var(--fs-3);
}

#courselogin hr {
  border: none;
  border-top: 1px dashed #E5E5E5;
  height: 1px;
}

/* layout only */
#courselogin input,
#courselogin select,
#courselogin textarea {
  margin: 3px 0;
  color: #3D5771;
  width: 100%;
}

#courselogin #login,
#courselogin #password {
  width: 100%;
}

#courselogin input:focus,
#courselogin select:focus,
#courselogin textarea:focus {
  color: #3D5771;
}

#courselogin input.button {
  font-size: var(--fs-2);
  font-weight: 700;
  margin: 10px 0;
  padding: 10px 14px;
  color: #fff;
  background: #153F68;
  border-radius: 6px;
  width: 150px;
  min-height: 40px;
  border: 1px solid #153F68;
}


/* Admin Login form */
#adminlogin {
  padding: 15px;
  border: 1px solid #E1BFBF;
  background: #EBD5D5;
  border-radius: 6px;
}

#adminlogin p {
  padding: 5px 0;
  margin: 0;
  color: #C76363;
}

#adminlogin label {
  font-weight: 700;
  color: #AD3939;
  font-size: var(--fs-5);
}

#adminlogin hr {
  border: none;
  border-top: 1px dashed #E5E5E5;
  height: 1px;
}

/* layout only */
#adminlogin input,
#adminlogin select,
#adminlogin textarea {
  margin: 5px 0;
  color: #6A6969;
}

#adminlogin input:focus,
#adminlogin select:focus,
#adminlogin textarea:focus {
  color: #BB4545;
  background: #F0CACA;
}

#adminlogin #rep_login,
#adminlogin #rep_password {
  width: calc(100% - 10%);
}

#adminlogin input.button {
  font-size: var(--fs-2);
  margin: 10px 0;
  padding: 10px 14px;
  color: #fff;
  background: #AD3939;
  border-radius: 6px;
  width: 150px;
  min-height: 40px;
  border: 1px solid #AD3939;
}






/*related posts (remade from table)*/
.related-content
{
  margin: 0px;
  width: 100%;
}

@media (min-width:290px) and (max-width: 767px) {
.related-content {
    margin: 0;
    overflow: hidden;
    padding: 5px;
    width: auto !important;
}
.more-articles, .related-articles, .golf-quotes {
    float: left;
    padding: 0 !important;
    width: 100%;
}

.col {    
    margin: 0 !important;
}
}
  
.more-articles, .related-articles, .golf-quotes
{
    float: left;
    padding: 0.3em 0.3em;
    width: 100%;
}
.related-articles
{
    
    float: right;
}

.more-articles ul, .related-articles ul{
-moz-padding-start:10px;
display:block;
list-style-type:disc;
}

.more-articles li, .related-articles li {
    margin: 3px 0 3px 5px;
    padding: 0;
    }

.related-content h4
{
    background: #B1B1B1;
    margin: 0px 0px 10px 0px;
    padding: 4px 7px;
  
}

.related-content h4 a:link, .related-content h4 a:visited
{
    text-decoration: none;
    color: #444;
}
.related-content h4 a:hover
{
    text-decoration: underline;
}

.related-content p.right
{
    float: right;
}

.more-news
{
  float: left;
  padding: 0em 0em;
  width: 100%;
}

.more-news ul{
-moz-padding-start:10px;
display:block;
list-style-type:disc;
}

.more-news li {
    margin: 3px 0 6px 5px;
    padding: 2px;
    }
  
  /*bio style*/
div.biography img.bio-photo {
  float: right;
  margin: 5px;
  padding: 2px;
  border: 2px solid #CCCCCC;
  width: 100px;
  height: 100px;
  border-radius: 50%;
object-fit: cover;
}

div.biography p 
{
  margin-bottom: 0.76em;
  font-size:12px;
  
  }
  
div.biography
{
  background-color:#EFEFEF;
  border:#000000;
  border: 1px;
  padding: 5px;
}

div.biography h3
{
  padding: 0px;
  margin: 0px;
}

/*Left-column with picture*/
.image-preview
{
   position: relative;
    margin-bottom: 12px;
}
.image-preview p
{
    margin: 0;
}

.image-preview a img
{
    border: none 0;
    vertical-align: middle;
}

div.image-preview-caption
{
    background-color: rgba(0, 0, 0, 0.5); /* black @ 50% */
    padding: 6px 5px 0 5px;
    font-size: 0.90em;
    font-weight: bold;
    color: #fff;
    bottom: 0;
    position: absolute;
    z-index: 2;
    width: calc(100% - 10px);
}

div.image-preview-caption a:link, div.image-preview-caption a:visited
{
  color: #fff;
  text-decoration: none;
}
div.image-preview-caption a:hover
{
  color: #fff;
  text-decoration: underline;
}

div.image-preview-caption span
{
    float: left;
    padding: 5px 5px 9px 5px;
}
.leftcol-container
{
    width: 100%;
    margin: 0 8px 0 0;
    background-color: #fff;
    float: left;
}

.leftcol-container2
{
    width: 100%;
    margin: 0 8px 0 0;
    background-color: #fff;
    float: left;
}



/*New image preview icons style*/
.image-preview #currentImage
{
    margin: 0;
    position: relative;
    z-index: 1;
}
.image-preview .thumbnail
{
    float: right;
}
.image-preview .thumbnail img
{
    border: solid 1px #666;
    width: 26px;
    height: 20px;
    padding: 1px;
}
.image-preview .thumbnail img:hover
{
    border-color: #999;
}
/*End Image LARGE Preview*/

.image-preview2
{
    position: relative;
    margin-bottom: 12px;
}
.image-preview2 p
{
    margin: 0;
    padding: 0;
}

.image-preview2 a img
{
    border: none 0;
}

.image-preview2 img {
  height: auto;
}

div.image-preview-caption2 {
 background-color: rgba(0, 0, 0, 0.5); /* black @ 50% */
 height: auto !important;
 font-size: 1.35em;
 font-weight: bold;
 color: #fff;
 margin-bottom: 2px;
 position: absolute;
 z-index: 5;
 width: 100%;
	bottom: 0;
	left: 0;
}



div.image-preview-caption2 a:link, div.image-preview-caption2 a:visited
{
  color: #fff;
  text-decoration: none;
}
div.image-preview-caption2 a:hover
{
  color: #fff;
  text-decoration: underline;
}

div.image-preview-caption2 span
{
    float: left;
    padding: 5px 5px 9px 5px;
}

/*New image preview icons style*/
.image-preview2 #currentImage2
{
    margin: 0;
    position: relative;
    z-index: 1;
  width: 100% !important;
}

@media (max-width: 940px)
{
.image-preview2 #currentImage2
{
    margin: 0;
    position: relative;
    z-index: 1;
  width: 100% !important;
    height: 100% !important;
}
}



.image-preview2 .thumbnail2
{
    margin-top:6px;
    margin-right:6px;
    float: right;
}
div.image-preview-caption2 span
{
    float: left;
    margin-top:6px;
    margin-left:6px;
    padding: 5px 5px 9px 5px;
}
.image-preview2 .thumbnail2 img
{
    border: solid 1px #666;
    width: 80px;
    height: 30px;
    padding: 1px;
	margin-top: 4px;
}
.image-preview2 .thumbnail2 img:hover
{
    border-color: #999;
}
/*End Image Preview*/

/*Featured course*/



.featured-course
{
    padding: 0 8px;
    width: 100%;
    float: left;
    border-left: 1px solid #ccc;
    min-height: 254px;
    margin-bottom: 12px;
}

.featured-course2
{
    padding: 0 8px;
    width: 100%;
    float: left;
    border-left: 1px solid #ccc;
    min-height: 154px;
    margin-bottom: 12px;
}

.featured-course h2
{
    text-transform: uppercase;
      font-family: var(--font-body); 
    font-size: 1.2em;
    font-weight: bold;
    background: #b1b1b1 url(../images/ats-h2-bg.gif) repeat-x;
    color: #555;
    padding: 4px 9px;
    letter-spacing: -1px;
    margin: 0px;
}
.featured-course h2 a:link, .featured-course h2 a:visited
{
    text-decoration: none;
    color: #555;
}

.featured-course h2 a:hover
{
    text-decoration: underline;
}

.featured-course p
{
    padding-left: 7px;
    padding-right: 7px;
    text-align: left;
    margin: 13px 0px;
}



.featured-course input.button { 
  font-size: var(--fs-2); 
  margin: 10px 20px 20px 10px;
  padding: 5px 10px;
  color: #fff;
  background: #153F68;
border-radius: 4px;
width: 150px;
height: 30px;
	float: right;
	border: none;
}

/*End fetured course*/



/*CourseLogo in Admin bubble style*/
p.courselogo
{
    float: right;
    padding: 5px;
    margin: 2px 0px;
}

/* single thumbnail */

  p.thumb{
    float:left;
    margin:.5em 0;
    margin-right:10px;
    border:1px solid #999;  
    padding:2px;
  }
  p.thumb a{
    display:block;
    float:left;
    width:150px;
    height:75px;
    line-height:75px;
    overflow:hidden;
    position:relative;
    z-index:1;  
  } 
  p.thumb a img{
    float:left;
    top:-20px;
    left:-50px; 
  }

/*article images*/
img.imgarticleleft, img.imgarticleright
{
    float: left;
    margin: 5px;
    border: 0px none;
}
img.imgarticleright
{
    float: right;   
}



/*golf features*/
.golf-profile
{
    min-height: 350px;
    border: 1px solid #bbb;
    clear: left;
    background-color: #f4f4f4;
    margin-bottom: 10px;
}
.golf-profile h2
{
    text-transform: uppercase;
    font-size: 1.45em;
    background: #000;
    padding: 3px 8px 4px 10px;
    letter-spacing: -1px;
    color: #eee;
    margin: 0px;
}

.golf-profile p
{
    padding: 3px 8px 4px 10px;
}

/* ==========================================================================
   SECTION HEADERS — FIXED VERTICAL ALIGNMENT
   ========================================================================== */

/* Shared base styles */
.section-header,
.section-header2,
.section-header3,
.section-header4,
.section-header5 {
  display: flex;
  align-items: center;          /* vertical centering */
  min-height: 28px;             /* preserves bar height */
  padding: 0 var(--sp-3);       /* horizontal padding only */
  margin-bottom: var(--sp-3);
  font-size:var(--fs-4);
  text-transform: uppercase;
  font-weight: 600;
  line-height: normal;          /* kill old centering hack */
}

/* adds a space after Font Awesome icons in ALL section headers */
.section-header i[class*="fa-"],
.section-header2 i[class*="fa-"],
.section-header3 i[class*="fa-"],
.section-header4 i[class*="fa-"],
.section-header5 i[class*="fa-"],
.section-header svg,
.section-header2 svg,
.section-header3 svg,
.section-header4 svg,
.section-header5 svg {
  margin-right: 0.5rem; /* ~8px spacing */
}

/* Link behavior (shared) */
.section-header a,
.section-header2 a,
.section-header3 a,
.section-header4 a,
.section-header5 a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
}

.section-header a:hover,
.section-header2 a:hover,
.section-header3 a:hover,
.section-header4 a:hover,
.section-header5 a:hover {
  text-decoration: underline;
  color: inherit;
}

/* Individual color schemes */
.section-header {
  background: #efefef;
  color: #555555;
}

.section-header2 {
  background: #E9F0F7;
  color: #2969b0;
}

.section-header3 {
  background: #fef3cd;
  color: #FAC51C;
}

.section-header4 {
  background: #ECF6EF;
  color: #41A85F;
}

.section-header5 {
  background: #E9F0F7;
  color: #2969b0;
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 768px) {
  .section-header,
  .section-header2,
  .section-header3,
  .section-header4,
  .section-header5 {
    font-size: 1em;
  }
}


  
div.course-nearby {
  width: 400px;
  border-bottom:none;
  margin: 0px 10px 0px 10px;
  padding: 0px;
  text-align:left;
  float:left;
  }
div.course-nearby-map {
  width: 300px;
  border-bottom:none;
  margin: 0px 10px 0px 0px;
  padding: 0px;
  text-align:right;
  float:right;
  }
  


p.minitextcaption 
{
  font-family: var(--font-body); 
    font-size: 9px;
    color: #404040;
  padding-bottom: 1px;
  font-style:italic;
  float:right;
}



/* Next Back Buttoms */
.searchresultbutton h5 {display: none;}
.searchresultbutton ul {padding: 5px 5px; margin: 20px 0px; background-color: #fff; font-weight: bold;}
.searchresultbutton ul li {list-style: none; margin: 0; display: inline;}
.searchresultbutton ul li a {padding: 5px 20px 5px 20px; background: #567BA5; border: 1px solid; border-color: #829FBC #476079 #476079 #829FBC; font-weight: bold; text-decoration: none; color: #fff;}
.searchresultbutton ul li a:link {color: #fff;}
.searchresultbutton ul li a:visited {color: #fff;}
.searchresultbutton ul li a:link:hover, .searchresultbutton ul li a:visited:hover {background: #809CB8; border: 1px solid #486786; color: #fff;}
.searchresultbutton ul li a.thispage {background: #A0CE41; border: 1px solid #638429; color: #fff;}


  
  /* ResultsTable - table */
#resultstable {
  border-collapse: collapse;
  margin: 10px;
  width: 98%;   
}
#resultstable tr { background: #fff; }
#resultstable tr.altrow { background: #F9F9F9;  }
#resultstable th, #resultstable td {
  text-align: left;     
  border-width: 1px;
    border-style: solid;
}
#resultstable th {
  color: #fff;
  background: #999;
  padding: .7em 1em;  
    border-color: #EFEFEF #EFEFEF #EFEFEF #EFEFEF;
  font-size:1.1em;
}
#resultstable td {
  border-color: #EFEFEF;  
  padding: .6em .6em; 
} 


#resultstable a:link, #resultstable a:visited { 
  text-decoration: underline;
  color: #344C64; 
}
#resultstable a:hover {
  text-decoration: none;
}
#resultstable a img
{
    border: none 0;
    vertical-align: top;
}

#resultstable a.tsc_button{
text-decoration: none;
}

#resultstable tr.altrow {background-color:#CCC}


/* end - table */

/**/
/*Site Sections*/
.site_sections
{
    float: left;
    width: 180px;
}

.site_sections h2
{
    text-transform: uppercase;
    font-size: 1.2em;
    background: #000000;
    padding: 5px 8px;
    letter-spacing: -1px;
    color: #eee;
    margin: 0px;
    font-weight: bold;
}
.inner_site_section
{
    margin: 0 0 10px;
    padding: 4px;
    border: 1px solid #DBDBDB;
    font-size: var(--fs-0);
    font-weight: normal;
}
.one_site_section
{
    padding: 2px;
    border-bottom-color: #DBDBDB;
    border-bottom-style: dotted;
    border-bottom-width: 1px;
}
.one_site_section h4
{
    font-size: var(--fs-5);
    line-height: 20px;
    margin: 0 0 8px 0;
    padding: 0;
}
.one_site_section p
{
    margin: 0 0 24px 0;
    padding: 0 0 8px 0;
    list-style: none;
}
.one_site_section_link
{
    font-size: var(--fs-0);
	font-weight: bold;
    margin: 0px 0 0 0;
    padding: 0px 0 0 0;
}
.one_site_section img
{
    border: none 0;
}
a.nounderline
{
    text-decoration: none;
}

/*Stay and play box and Courses box AT THE MOMENT THIS IS THE ARTICLES AND NEWS ON HOME PAGE*/
.stay-play, .destinations
{
    background: #1865bd url(../images/stay-play-bg.jpg) bottom repeat-x;
    min-height: 350px;
    border: 1px solid #bbb;
    margin-bottom: 8px;
    width: 100%;
    float: left;
    margin-right: 8px;
}
.destinations {
    margin-right: 0;
    background: #646464 url(../images/destinations-bg.jpg) bottom repeat-x;
    background: rgba(100,100,100,1);
    background: -moz-linear-gradient(top, rgba(100,100,100,1) 0%, rgba(66,66,66,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(100,100,100,1)), color-stop(100%, rgba(66,66,66,1)));
    background: -webkit-linear-gradient(top, rgba(100,100,100,1) 0%, rgba(66,66,66,1) 100%);
    background: -o-linear-gradient(top, rgba(100,100,100,1) 0%, rgba(66,66,66,1) 100%);
    background: -ms-linear-gradient(top, rgba(100,100,100,1) 0%, rgba(66,66,66,1) 100%);
    background: linear-gradient(to bottom, rgba(100,100,100,1) 0%, rgba(66,66,66,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#646464', endColorstr='#424242', GradientType=0 );
}
.stay-play h2, .destinations h2
{
    text-transform: uppercase;
    font-size: 1.45em;
    background: #0A284A url(../images/stay-play-h2-bg.gif) repeat-x;
    padding: 3px 8px 4px 10px;
    margin-bottom: 10px;
    letter-spacing: -1px;
    color: #eee;
}
.destinations h2
{
    background: #404040 url(../images/dest-h2-bg.gif) repeat-x;
    color: #fff;
}

@media (max-width: 768px) {
	
	.stay-play h2, .destinations h2
		{ font-size: 1.15em; }
}


.stay-play img, .destinations img
{
    float: left;
    margin: 0 8px 10px 0;
    border: 0px;
}
.stay-play h3, .destinations h3
{
    font-size: 1.1em;
  font-weight: bold;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
.stay-play p, .destinations p
{
    line-height: 1.5em;
}
.stay-play h3 a, .destinations h3 a, .stay-play p, .destinations p
{
    color: #fff;
    text-decoration: none;
}
.stay-play h3 a:hover, .destinations h3 a:hover
{
    text-decoration: underline;
}
.promo-info
{
    padding: 0 10px 0 10px;
    float: left;
    clear: left;
    width: 93%;
}
p.promo-info-more
{
    background: url(../images/arrow2.gif) 5px 2px no-repeat;
    padding-left: 19px;
    float: left;
    clear: left;
    width: 100%;
    line-height: 1em !important;
}
p.promo-info-more a
{
    color: #fff;
}

/*End newsletter subscribe*/
/*Right section article*/
.right_article_box
{
    padding: 10px 0;
    margin: 10px 0 0 0;
    text-align: left;
}
.right_article_box p
{
    margin: 0 0 5px 0;
    color: #555;
}
.right_article_box h4
{
    margin: 0;
    padding: 0;
    text-align: left;
    color: #555;
    font-weight: bold;
}
.right_article_box ul
{
    margin: 6px 0 6px 13px;
}
.right_article_box li
{
    padding: 0 0 4px 0;
}
.right_article_box
{
    margin: 5px 0 5px 0;
}
/*End right section article*/
/*Newsletter textbox and button*/
#newsletter_input
{
    border: 3px double #999;
    background: #fff;
    width: 190px;
    padding: 4px;
    margin: 3px 0 0 0;
}
#newsletter_submit
{
	font-weight: bold;
    padding: 3px 4px 3px 4px;
    border: 3px double #999;
    background: #ddd;
    margin: 0;
    color: #444;
    width: 75px;
}
#newsletter_submit:hover
{
    background: #bbb;
    color: #000;
}

/*Banners*/
.banners_right
{
    float: left;
    width: 160px;
    margin-left: 10px;
}
.banners_right img
{
    border: 0px;
}
/*End banners*/


/************ Shortcut Buttons ************/

.shortcut-button {
                border: 1px solid #ccc !important;
                background: #f7f7f7;
                display: block;
                width: 120px;
                margin: 0 0 20px 0;
                }

.shortcut-button span {
                border: 1px solid #fff;
                display:block;
                padding: 15px 10px 15px 10px;
                text-align: center;
                color: #2969B0;
                font-size: var(--fs-1);
                line-height: 1.3em;
				height: 150px;
                }

/*Changed dispplay property from default (inline) to block. Also changed margin values.*/
.shortcut-button span img {
                margin: 5px auto 10px;
        padding: 5px;
        border: 0px;
        text-decoration: none !important;
        display: block;
                }
.shortcut-button:hover {
                background: #fff;
                }
.shortcut-button:link {
  text-decoration:none;
                }
        
.shortcut-button span:hover {
        color: #41a85f; 
                }

ul.shortcut-buttons-set li {
                float: left;
                margin: 0 15px 0 0;
        padding: 0 !important;
        list-style: none;
        background: 0;
                }


/* ==========================================================================
   COMPONENTS - Buttons, Alerts, Tool Tips
   ========================================================================== */


/* ==========================================================================
   GT CARD (component-scoped tokens)
   ========================================================================== */

.gt-card {
  /* component tokens */
  --card-bg: #fff;
  --card-border: #E5E5E5;
	--card-radius: var(--radius-surface); /* was 6px */
  --card-shadow: 0 1px 2px rgba(60,64,67,.15),
                 0 1px 3px rgba(60,64,67,.10);
  --card-shadow-hover: 0 10px 30px rgba(0,0,0,.12);
  --card-pad: 14px;
  --card-accent: #2969B0;
  --card-accent-soft: #E9F0F7;
  --card-title: #153F68;
  --card-text: #3D5771;
  --card-muted: #667085;

  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .14s ease,
              box-shadow .14s ease,
              border-color .14s ease;
	position: relative;
}

.gt-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ensure content stays clickable above overlay */
.gt-card__body,
.gt-card__header,
.gt-card__footer,
.gt-card__media {
  position: relative;
  z-index: 2;
}

.gt-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
  border-color: #d6d6d6;
}

/* === Header option */

.gt-card__header {
  padding: var(--card-pad);
  background: var(--card-accent-soft);
  color: var(--card-title);
  font-weight: 800;
	font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gt-card__header small {
  display: block;
  font-weight: 600;
  color: var(--card-muted);
  margin-top: 2px;
}

/* Header image optional */

.gt-card__media {
  position: relative;
  overflow: hidden;
}

.gt-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

/* fixed-height hero image */
.gt-card__media--hero {
  height: 160px;
}

.gt-card__media--hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Optional: taller hero for packages */
.gt-card__media--hero-lg { height: 200px; }
.gt-card__media--hero-lg img { width: 100%; height: 100%; object-fit: cover; }

/* optional overlay title */
.gt-card__mediaTitle {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
}


/* body of gt card */

.gt-card__body {
  padding: var(--card-pad);
  color: var(--card-text);
  flex: 1 1 auto;
}

.gt-card__title {
  margin: 0;
  padding-bottom: var(--sp-2);          /* creates the inset */
  margin-bottom: var(--sp-2);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--card-title);
  border-bottom: 1px solid var(--card-border);
}

.gt-card__desc {
  margin: 0;
  font-size: .95rem;
  line-height: 1.35;
}

.gt-card__meta {
  margin-top: 10px;
  font-size: .85rem;
  color: var(--card-muted);
}


/* Footer and buttons */
.gt-card__footer {
  position: relative;
  padding: 12px var(--card-pad);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  background: #fff;
}

/* inset divider (matches h3 divider style) */
.gt-card__footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--card-pad);
  right: var(--card-pad);
  height: 1px;
  background: var(--card-border);
}

/* ===== GT CARD: footer layout option ===== */
.gt-card__footer--split {
  justify-content: space-between;
  align-items: center;
}

.gt-card__footerLeft {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #667085;
  font-size: .85rem;
  font-weight: 600;
}

/* buttons */
.gt-btn,
.gt-btn:link,
.gt-btn:visited {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #cfd8e3;
  background: #fff;
  color: #153F68;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .12s ease,
              border-color .12s ease,
              transform .12s ease;
}

.gt-btn:hover {
  background: #f6f8fb;
  border-color: #bfcad8;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Primary GT card button — matches section-header2 */
.gt-btn--primary,
.gt-btn--primary:link,
.gt-btn--primary:visited{
  background: #2969b0;
  border-color: #2969b0;
  color: #fff;
  font-weight: 700;
}

/* Hover / focus */
.gt-btn--primary:hover,
.gt-btn--primary:focus {
  background: #1f5ea2;   /* darker, richer blue */
  border-color: #1f5ea2;
  color: #fff;
  transform: translateY(-1px);
}

/* Danger GT card button — destructive actions */
.gt-btn--danger,
.gt-btn--danger:link,
.gt-btn--danger:visited {
  background: #c0392b;        /* rich red */
  border-color: #c0392b;
  color: #fff;
  font-weight: 700;
}

/* Hover / focus */
.gt-btn.gt-btn--danger:hover,
.gt-btn.gt-btn--danger:focus {
  background: #a93226;        /* darker red */
  border-color: #a93226;
  color: #fff;
  transform: translateY(-1px);
}

/* responsive grid (auto-fit default) */
.gt-card-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Fixed columns */
.gt-card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gt-card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gt-card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Tablet breakpoints */
@media (max-width: 1100px) {
  .gt-card-grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .gt-card-grid--4,
  .gt-card-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 520px) {
  .gt-card-grid,
  .gt-card-grid--2,
  .gt-card-grid--3,
  .gt-card-grid--4 {
    grid-template-columns: 1fr;
  }
}

/* Fixed width helpers */
.gt-card--w-320 { max-width: 320px; }
.gt-card--w-420 { max-width: 420px; }
.gt-card--full  { width: 100%; }

/* Right-rail / sidebar stack of cards */
.gt-card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px; /* match .gt-card-grid gap */
}


/* ===== GT CARD: logo badge on hero image ===== */
.gt-card__logoBadge {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.gt-card__logoBadge img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* ===== GT CARD: pills row ===== */
.gt-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.gt-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #d7e3f2;
  background: #f6f8fb;
  color: #153F68;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1;
}

.gt-pill--blue {
  background: #E9F0F7;
  border-color: #cfe0f3;
  color: #2969b0;
}

/* ==========================================================================
   GT ICON CARD (big icon + short label) in admin areas for courses
   ========================================================================== */

.gt-card--icon {
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 160px;
  padding: 20px;
  cursor: pointer;
}

/* Big icon */
.gt-card__icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--card-accent);
  transition: transform .15s ease, color .15s ease;
}

.gt-card--icon:hover {
  background: #f9fbfd;
}

/* for keyboards */

.gt-card__link:focus-visible {
  outline: 3px solid #2969b0;
  outline-offset: -3px;
}


/* Label text */
.gt-card__label {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--card-title);
  line-height: 1.2;
}

/* Optional subtitle */
.gt-card__sub {
  margin-top: 4px;
  font-size: .85rem;
  color: var(--card-muted);
}

/* Hover effects */
.gt-card--icon:hover .gt-card__icon {
  transform: scale(1.08);
  color: #1f5ea2;
}

/* Optional icon color variants */
.gt-card--success .gt-card__icon { color: #41A85F; }
.gt-card--danger  .gt-card__icon { color: #c0392b; }
.gt-card--neutral .gt-card__icon { color: #6B7280; }


/* ==========================================================================
   ICON DASHBOARD GRID (6-up)
   ========================================================================== */

.gt-icon-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

/* Desktop → laptop */
@media (max-width: 1200px) {
  .gt-icon-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 900px) {
  .gt-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 520px) {
  .gt-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================================
   GT CARD — HORIZONTAL (media left, content right) Featured stay and play on home page
   ========================================================================== */

.gt-card--horizontal {
  flex-direction: row;
  align-items: stretch;
}

/* ==========================================================================
   GT CARD — HORIZONTAL RIGHT (media right, content left)
   ========================================================================== */

.gt-card--horizontal-right {
  flex-direction: row-reverse;  /* flips: media on right */
}

/* Optional: keep overlay pill/flag correct when image is on right */
.gt-card--horizontal-right .gt-card__pill-overlay,
.gt-card--horizontal-right .gt-card__flag {
  left: auto;
  right: 12px;
}


.gt-card--horizontal .gt-card__media {
  flex: 0 0 420px;
  max-width: 420px;
}

/* Right content */
.gt-card--horizontal .gt-card__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

/* body spacing tweak */
.gt-card--horizontal .gt-card__body {
  padding: 16px;
}

/* footer aligns nicely */
.gt-card--horizontal .gt-card__footer {
  margin-top: auto;
}

/* Mobile: stack image on top */
@media (max-width: 768px) {
  .gt-card--horizontal {
    flex-direction: column;
  }

  .gt-card--horizontal .gt-card__media {
    max-width: 100%;
    height: 180px;
	  
	  object-fit: cover;
  }
}


/* ==========================================================================
   GT PILL — SMALL BLACK (Homepage-style)
   ========================================================================== */

.gt-pill--black {
  background: #111;          /* near-black */
  border-color: #111;
  color: #fff;

  font-size: 0.7rem;         /* smaller than default */
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  padding: 4px 8px;
}

/* GT PILL — BLACK, SQUARE EDGES (overlay style) */
.gt-pill--black.gt-pill--square {
  border-radius: 0;
}

/* ==========================================================================
   GT CARD — IMAGE OVERLAY PILL
   ========================================================================== */

/* container for overlay elements */
.gt-card__media {
  position: relative; /* already present, required */
}

/* pill positioned over image */
.gt-card__pill-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
}


/* ==========================================================================
   GT CARD — FEATURED FLAG
   ========================================================================== */

.gt-card__flag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;

  padding: 6px 10px;
  border-radius: 999px;

  background: #2969b0;        /* matches section-header2 / primary */
  color: #fff;

  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;

  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

/* Optional variant: success/green featured */
.gt-card__flag--success {
  background: #41A85F;
}

/* Optional variant: neutral */
.gt-card__flag--neutral {
  background: #6B7280;
}


.gt-card--podcast{
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 16px;
  padding: 14px;
}

.gt-card--podcast .gt-card__media{
  display: block;
  text-decoration: none;
}

.gt-card--podcast .gt-card__media img{
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.gt-card--podcast .gt-card__media-fallback{
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(20,40,60,.25);
  background: rgba(20,40,60,.04);
  font-size: 34px;
}

.gt-card--podcast .gt-card__body{
  min-width: 0; /* prevents long titles from busting layout */
}

.gt-card--podcast .gt-card__title{
  margin: 2px 0 8px;
  line-height: 1.2;
}

.gt-card--podcast .gt-card__title a{
  color: inherit;
  text-decoration: none;
}

.gt-card--podcast .gt-card__title a:hover{
  text-decoration: underline;
}

.gt-card--podcast .gt-card__desc-wrap{
  display: flow-root; /* contains floated/inline items safely */
}

.gt-card--podcast .gt-card__logo{
  float: right;
  margin: 0 0 10px 12px;
  text-decoration: none;
}

.gt-card--podcast .gt-card__logo img{
  width: 100px;
  height: auto;
  display: block;
}

.gt-card--podcast .gt-card__desc{
  margin: 0 0 12px;
  color: rgba(31,41,55,.92);
	 font-size: var(--fs-2);
}

.gt-card--podcast .gt-card__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Mobile */
@media (max-width: 560px){
  .gt-card--podcast{
    grid-template-columns: 1fr;
  }

  .gt-card--podcast .gt-card__media img,
  .gt-card--podcast .gt-card__media-fallback{
    width: 100%;
    height: 190px;
  }

  .gt-card--podcast .gt-card__logo{
    float: none;
    margin: 0 0 10px;
  }
}

/*/* =========================================================
   HOME VIDEO CARDS (Featured + 2 small) — COMPLETE DROP-IN
   Uses REAL Font Awesome element (<i class="fa-solid fa-play">)
   so it works with Kits/SVG and paid Font Awesome setups.
   ========================================================= */

/* ---------- GRID (1 big + 2 small) ---------- */
.gt-videoGrid{
  display: grid !important;
  gap: var(--sp-4, 14px);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px){
  .gt-videoGrid{ grid-template-columns: 1fr 1fr; }
  .gt-videoGrid .gt-card--featured{ grid-column: 1 / -1; }
}

/* Neutralize legacy float grid INSIDE this section */
.gt-videoGrid .col,
.gt-videoGrid [class*="span_"],
.gt-videoGrid [class^="span_"]{
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}
.gt-videoGrid br.clear{ display: none !important; }

/* ---------- CARD EDGE FIX ---------- */
.gt-card--video{
  padding: 0 !important;      /* key: media touches card edge */
  overflow: hidden;           /* clip to radius */
  border-radius: 14px;
  background: #fff;
}


/* ---------- MEDIA WRAPPER ---------- */
.gt-card--video .gt-card__media.videoimagehome{
  display: block;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important; /* IMPORTANT: anchor must be positioned */
  background: #000;
  aspect-ratio: 16 / 9;          /* remove if you don't want forced crop */
  text-decoration: none;
}

/* Image fills media wrapper */
.gt-card--video .gt-card__media.videoimagehome img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .25s ease;
}

//* ===== VIDEO THUMB OVERLAY (no Font Awesome dependency) ===== */
.gt-card--video .gt-card__media.videoimagehome{
  position: relative;
  overflow: hidden;
  background: #000;
}

/* image fill */
.gt-card--video .gt-card__media.videoimagehome img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .25s ease;
}

/* your existing <span></span> becomes the scrim + play button */
.gt-card--video .gt-card__media.videoimagehome span{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;

  /* soft scrim */
  background:
    radial-gradient(circle at 50% 45%, rgba(0,0,0,.40) 0%, rgba(0,0,0,.15) 38%, rgba(0,0,0,0) 65%),
    linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 55%);
}

/* YouTube-ish circle */
.gt-card--video .gt-card__media.videoimagehome span::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
  z-index: 1;
  transition: transform .25s ease, opacity .25s ease;
}

/* Play triangle */
.gt-card--video .gt-card__media.videoimagehome span::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-35%, -50%); /* nudge right like YouTube */
  width: 0;
  height: 0;
  border-left: 22px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  z-index: 2;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.45));
  transition: transform .25s ease, opacity .25s ease;
}

/* ===== Equal-height small video cards ===== */

/* Make small video cards a column layout */
.gt-card--video:not(.gt-card--featured){
  display: flex;
  flex-direction: column;
}

/* Keep media consistent */
.gt-card--video:not(.gt-card--featured) .gt-card__media.videoimagehome{
  aspect-ratio: 16 / 9;
}

/* Clamp AND reserve space for exactly 2 lines */
.gt-card--video:not(.gt-card--featured) .gt-card__title{
  line-height: 1.25;
  min-height: calc(1.25em * 2);  /* reserve 2 lines */
  max-height: calc(1.25em * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Add space between title block and body border */
.gt-card--video:not(.gt-card--featured) .gt-card__body{
  padding-bottom: 18px; /* was likely 14–16px */
}


/* hover/focus */
.gt-card--video .gt-card__media.videoimagehome:hover img,
.gt-card--video .gt-card__media.videoimagehome:focus-visible img{
  transform: scale(1.05);
}

.gt-card--video .gt-card__media.videoimagehome:hover span::before,
.gt-card--video .gt-card__media.videoimagehome:focus-visible span::before{
  transform: translate(-50%, -50%) scale(1.05);
}

.gt-card--video .gt-card__media.videoimagehome:hover span::after,
.gt-card--video .gt-card__media.videoimagehome:focus-visible span::after{
  transform: translate(-35%, -50%) scale(1.05);
}

/* Accessibility */
.gt-card--video .gt-card__media.videoimagehome:focus-visible{
  outline: 3px solid rgba(41,105,176,.55);
  outline-offset: 3px;
}

/* ---------- TEXT (modern) ---------- */
.gt-card--video .gt-card__body{
  padding: 14px 16px 16px;
}

.gt-card--video .gt-card__eyebrow{
  font-size: var(--fs-0, .75rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #667085;
  margin: 0 0 4px;
}

.gt-card--video .gt-card__title{
  font-family: var(--font-head, var(--font-body, system-ui));
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  color: #163F6B;
}

.gt-card--featured .gt-card__title{
  font-size: var(--fs-5, 1.25rem);
}

.gt-card--video:not(.gt-card--featured) .gt-card__title{
  font-size: var(--fs-3, 1rem);
}

/* =========================================================
   VIDEO LIST ROW CARDS (for /videos and results pages)
   ========================================================= */

.gt-card--videoRow{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 16px;
  align-items: start;

  padding: 14px;
  border: 1px solid rgba(20,40,60,.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20,40,60,.06);

  margin-bottom: 14px;
}

/* media */
.gt-videoRow__media{
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  text-decoration: none;
}

.gt-videoRow__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .25s ease;
}

.gt-videoRow__mediaFallback{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 42px;
  opacity: .85;
}

/* overlay scrim + play button (pure CSS) */
.gt-videoRow__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 45%, rgba(0,0,0,.40) 0%, rgba(0,0,0,.15) 38%, rgba(0,0,0,0) 65%),
    linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 55%);
}

.gt-videoRow__overlay::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
  transition: transform .25s ease;
}

.gt-videoRow__overlay::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.45));
  transition: transform .25s ease;
}

/* hover */
.gt-videoRow__media:hover img{
  transform: scale(1.05);
}
.gt-videoRow__media:hover .gt-videoRow__overlay::before{
  transform: translate(-50%, -50%) scale(1.05);
}
.gt-videoRow__media:hover .gt-videoRow__overlay::after{
  transform: translate(-35%, -50%) scale(1.05);
}

/* text */
.gt-videoRow__eyebrow{
  font-size: var(--fs-0, .75rem);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #667085;
  margin: 2px 0 6px;
}

.gt-videoRow__title{
  margin: 0 0 8px;
  font-family: var(--font-head, var(--font-body, system-ui));
  font-weight: 900;
  line-height: 1.2;
  font-size: var(--fs-5, 1.25rem);
}

.gt-videoRow__title a{
  color: #163F6B;
  text-decoration: none;
}
.gt-videoRow__title a:hover{
  color: #1d4f82;
  text-decoration: underline;
}

.gt-videoRow__desc{
  margin: 0;
  color: #475467;
  line-height: 1.45;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* mobile */
@media (max-width: 720px){
  .gt-card--videoRow{
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Course Video Rows - extra structure for logo + address
   ========================================================= */

.gt-card--courseVideoRow .gt-videoRow__top{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: start;
}

/* logo */
.gt-card--courseVideoRow .gt-videoRow__logo{
  display: inline-block;
  width: 110px;
}

.gt-card--courseVideoRow .gt-videoRow__logo img{
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(20,40,60,.10);
  padding: 6px;
}

/* location */
.gt-card--courseVideoRow .gt-videoRow__location{
  margin-top: 6px;
  color: #475467;
  font-size: var(--fs-2, .875rem);
  line-height: 1.35;
}

/* If there is NO logo, let meta fill full width */
.gt-card--courseVideoRow .gt-videoRow__top:has(.gt-videoRow__logo:empty){
  grid-template-columns: 1fr;
}

/* Mobile: stack logo above text */
@media (max-width: 720px){
  .gt-card--courseVideoRow .gt-videoRow__top{
    grid-template-columns: 1fr;
  }
  .gt-card--courseVideoRow .gt-videoRow__logo{
    width: 140px;
  }
}


/* =========================================================
   ARTICLE ROW CARDS (matches video rows)
   ========================================================= */

.gt-card--articleRow{
  display: grid;
  grid-template-columns: 360px 1fr; /* MATCH video thumb width */
  gap: 16px;
  align-items: start;

  padding: 14px;
  border: 1px solid rgba(20,40,60,.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20,40,60,.06);

  margin-bottom: 14px;
}

/* media */
.gt-articleRow__media{
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #f6f8fb;
  aspect-ratio: 16 / 9;
  text-decoration: none;
}

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

/* fallback */
.gt-articleRow__mediaFallback{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #667085;
}

/* text */
.gt-articleRow__eyebrow{
  font-size: var(--fs-0, .75rem);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #667085;
  margin: 2px 0 6px;
}

.gt-articleRow__title{
  margin: 0 0 8px;
  font-family: var(--font-head, var(--font-body, system-ui));
  font-weight: 900;
  line-height: 1.2;
  font-size: var(--fs-5, 1.25rem);
}

.gt-articleRow__title a{
  color: #163F6B;
  text-decoration: none;
}

.gt-articleRow__title a:hover{
  color: #1d4f82;
  text-decoration: underline;
}

.gt-articleRow__desc{
  margin: 0;
  color: #475467;
  line-height: 1.45;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* mobile */
@media (max-width: 720px){
  .gt-card--articleRow{
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Featured Article (home hero-style)
   ========================================================= */

.gt-card--featuredArticle{
  padding: 0 !important;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

/* media */
.gt-featureMedia{
  display: block;
  position: relative;
  text-decoration: none;
  aspect-ratio: 16 / 9; /* change to 21/9 if you want more banner-like */
  background: #000;
}

.gt-featureMedia img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .25s ease;
}

.gt-featureMedia:hover img{
  transform: scale(1.03);
}

/* caption (glass) */
.gt-featureMedia__caption{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;

  padding: 12px 14px;
  border-radius: 14px;

  background: rgba(15, 20, 30, .55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);

  color: #fff;
}

.gt-featureMedia__eyebrow{
  font-size: var(--fs-0, .75rem);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 6px;
}

.gt-featureMedia__title{
  font-family: var(--font-head, var(--font-body, system-ui));
  font-weight: 900;
  font-size: var(--fs-6, 1.5rem);
  line-height: 1.15;
  margin: 0 0 6px;
}

.gt-featureMedia__sub{
  font-size: var(--fs-2, .875rem);
  line-height: 1.35;
  opacity: .92;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}




/* =========================================================
   TOOLTIP (Pure CSS) — GolfTrips style
   Usage: add class="has-tip" + data-tip="Your text"
   Optional: data-tip-pos="top|right|bottom|left"
   ========================================================= */

.has-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

/* the bubble */
.has-tip::after {
  content: attr(data-tip);
  position: absolute;
  z-index: 9999;

  /* default position (top) */
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);

  /* look */
  background: #163F6B;        /* GolfTrips navy */
  color: #fff;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.2;
  white-space: nowrap;

  /* motion + visibility */
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

/* the little arrow */
.has-tip::before {
  content: "";
  position: absolute;
  z-index: 9999;

  /* default arrow (top) */
  left: 50%;
  bottom: calc(100% + 2px);
  transform: translateX(-50%) translateY(6px);

  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top-color: #163F6B;

  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

/* show on hover + keyboard focus */
.has-tip:hover::after,
.has-tip:focus-visible::after,
.has-tip:hover::before,
.has-tip:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Accessibility: make it focusable when it isn't already */
.has-tip[tabindex] { outline: none; }

/* Optional focus ring consistent with your brand */
.has-tip:focus-visible {
  outline: 2px solid rgba(22,63,107,.35);
  outline-offset: 3px;
  border-radius: 999px;
}

/* -------- Position variants -------- */

/* RIGHT */
.has-tip[data-tip-pos="right"]::after {
  left: calc(100% + 10px);
  bottom: 50%;
  transform: translateX(-6px) translateY(50%);
}
.has-tip[data-tip-pos="right"]::before {
  left: calc(100% + 2px);
  bottom: 50%;
  transform: translateX(-6px) translateY(50%);
  border: 7px solid transparent;
  border-right-color: #163F6B;
}

/* BOTTOM */
.has-tip[data-tip-pos="bottom"]::after {
  left: 50%;
  bottom: auto;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(-6px);
}
.has-tip[data-tip-pos="bottom"]::before {
  left: 50%;
  bottom: auto;
  top: calc(100% + 2px);
  transform: translateX(-50%) translateY(-6px);
  border: 7px solid transparent;
  border-bottom-color: #163F6B;
}

/* LEFT */
.has-tip[data-tip-pos="left"]::after {
  left: auto;
  right: calc(100% + 10px);
  bottom: 50%;
  transform: translateX(6px) translateY(50%);
}
.has-tip[data-tip-pos="left"]::before {
  left: auto;
  right: calc(100% + 2px);
  bottom: 50%;
  transform: translateX(6px) translateY(50%);
  border: 7px solid transparent;
  border-left-color: #163F6B;
}

/* -------- Icon helper (Font Awesome circle) -------- */

.tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: .35rem;
  color: #163F6B;
  cursor: help;
  line-height: 1;
}

.tip-icon:hover { color: #1d4f82; }

.tip-icon i { font-size: 0.95rem; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .has-tip::before,
  .has-tip::after { transition: none; }
}


        
/* Footer Info ============================================================================= */
#footer
{
    width: 1400px !important; 
    max-width: 100%;
    margin: 0; 
    background: #41A85F;
    height: 89px; 
    padding: 0px 15px 0px 110px; 
}
#footer p
{
    margin: 0;
    padding-top: 45px; /*Chanbged padding top from 20px to 45px becouse of new footer image*/
    line-height: normal;
    font-size: var(--fs-1);
    text-transform: uppercase;
    text-align: right; /*Changed text align from center to right to look better*/
    color: #E1F5A6;
}

#footer a:link, #footer a:visited
{
    color: #ffffff;
    text-decoration: none;
}


#footer a:hover
{
    border-bottom: 1px dotted #ffffff;
}

#footercontainer {
    width: 100%;  
    background: #328148;
	border-top: 6px #41A85F solid;
  }
  
    footer {
      clear: both;
      width: 98%;
      font-size: var(--fs-1);
      max-width: 100em;
      margin: 0 auto;
      padding: 20px 0px 10px 0px;
      color: #fff;
    }

    footer strong {
      font-size: var(--fs-1);
		font-weight: 700;
      color: #aaa;
    }


    footer a:link, footer a:visited { color: #fff; text-decoration: underline; }
    footer a:hover { color: #fff; text-decoration: none; }

    ul.pagefooterlist, ul.pagefooterlistimages {
      display: block;
      float: left;
      margin: 0px;
      padding: 0px;
      list-style: none;
    }

    ul.pagefooterlist li, ul.pagefooterlistimages li {
      clear: left;
      margin: 0px;
      padding: 0px 0px 3px 0px;
      display: block;
      line-height: 1.5em;
      font-weight: normal;
      background: none;

    }

    ul.pagefooterlistimages li {
      height: 34px;
    }


    ul.pagefooterlistimages li img {
      padding: 5px 5px 5px 0px;
      vertical-align: middle;
      opacity: 0.75;
      transition: all 0.3s ease;
    }

    ul.pagefooterlistimages li a
    {
      text-decoration: none;
    }

    ul.pagefooterlistimages li a:hover img {
      opacity: 1.0;
    }

/* Social Media Icons Everywhere Else */

.social-media-icons {
  display: flex;  /* Enables Flexbox layout */
  gap: 10px;  /* Adds space between the icons */
  justify-content: left;  /* Centers the icons in the container */
	flex-wrap: wrap;
  position: relative;
  z-index: 4; /* above the .gt-card__link overlay */
}

.social-media-icons-right {
  display: flex;  /* Enables Flexbox layout */
  gap: 10px;  /* Adds space between the icons */
  justify-content: right;  /* Centers the icons in the container */
}

.social-media-image{
  display: inline-flex;
  position: relative;
  z-index: 4;
}

.social-media-image img, .social-media-icons-right img {
  	border-radius: 6px;  /* Rounds the edges of the image */
  	border-width: 0px;
  	width: 100%;  /* Makes the image responsive, adjust to its container */
  	height: auto;  /* Keeps the image's aspect ratio */
	box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15); /* Adds a light border around the image */
	 display: block;
}




/* Social Media Icons Footer */
.social-icon {
    color: #fff;
}

ul.social-icons {
    margin-top: 10px;
	margin-left: 0px;
	padding: 0px;
}

.social-icons li {
    vertical-align: top;
    display: inline;
    height: 140px;
	width: 140px;
}
.social-icons a {
    color: #fff;
    text-decoration: none;
}




footer .fa-twitter {
    padding:10px 12px;
    transition: .5s;
    background-color: #328148;
}
footer .fa-twitter:hover {
    background-color: #00aced;
}

footer .fa-x-twitter {
    padding:10px 12px;
    transition: .5s;
    background-color: #328148;
}
footer .fa-x-twitter:hover {
    background-color: #1e2f50;
}

footer .fa-facebook-f {
    padding:10px 14px;
    transition: .5s;
    background-color: #328148;
}
footer .fa-facebook-f:hover {
    background-color: #3d5b99;
}

footer .fa-instagram {
    padding:10px 14px;
 
    transition: .5s;
    background-color: #328148;
}
footer .fa-instagram:hover {
    background-color: #d53089;
}

footer .fa-tiktok {
    padding:10px 14px;

    transition: .5s;
    background-color: #328148;
}
footer .fa-tiktok:hover {
    background-color: #000000;
}

footer .fa-youtube {
    padding:10px 14px;
    transition: .5s;
    background-color: #328148;
}
footer .fa-youtube:hover {
    background-color: #FF0000;
}

footer .fa-rss {
    padding:10px 14px;
    transition: .5s;
    background-color: #328148;
}
footer .fa-rss:hover {
    background-color: #eb8231;
}


/* Social Media Icons COURSES============================================================================= */

.course-nav-soc-wrap {
            margin-top: 20px;
            left: 0;
            width: 100%;
            height: 40px;
        }

        span.course-nav-soc-but {
            background: rgba(255, 255, 255, .15);
            color: #fff;
            -webkit-border-radius: 50%;
            border-radius: 10%;
            display: inline-block;
            font-size: var(--fs-3);
            margin-left: 3px;
            padding-top: 5px;
            text-align: center;
            width: 25px;
            height: 20px;
        }
        span.course-nav-soc-but,
        ul.course-fly-soc-list li a,
        span.course-woo-cart-num,
        span.course-nav-soc-wrap {
            background: rgba(0, 0, 0, .8);

        }

        .course-nav-soc-wrap .facebook-icon:hover {
            background: #3b5997;
        }

        .course-nav-soc-wrap .youtube-icon:hover {
            background: #f00;
        }

        .course-nav-soc-wrap .twitter-icon:hover {
            background: #00aced;
        }
		
		.course-nav-soc-wrap .vimeo-icon:hover {
            background: #00aced;
        }
		
		.course-nav-soc-wrap .twitterx-icon:hover {
            background: #8F8D8D;
        }

        .course-nav-soc-wrap .instagram-icon:hover {
           background: #D500C2;
        }
		
		.course-nav-soc-wrap .tiktok-icon:hover {
            background: #8F8D8D;
        }
		
		.course-nav-soc-wrap .flickr-icon:hover {
            background: #0063DC;
        }
		
		.course-nav-soc-wrap .yelp-icon:hover {
            background: #E00707;
        }
		
		.course-nav-soc-wrap .pinterest-icon:hover {
            background: #E60023;
        }
		
		.course-nav-soc-wrap .linkedin-icon:hover {
            background: #0A66C2;
        }
		
		.course-nav-soc-wrap .blog-icon:hover {
            background: #F4933F;
        }
		
		.course-nav-soc-wrap .tripadvisor-icon:hover {
            background: #34E0A1;
        }

        .course-nav-soc-but, .course-nav-soc-wrap a {
            text-decoration: none;
        }




/*-------------> BAROUSEL Super Image on Destinations */ 
.barousel {
 position: relative;
 margin-bottom: 0px;
 width: 100% !important;
 height: 600px;
 background:#000;
 overflow:hidden;
}

.barousel_image {
 position: absolute;
 z-index: 10;
 width: 100% !important;
 height: 600px;
}


.barousel_image img {
 width: 100% !important;
 position: absolute;
 display:none;
}
.barousel_image img.default {
 display:block;
}

.barousel_image a {
  text-decoration: none;
  color: #fff; /* if you have text in the link */
}

.barousel_image img.nav-current
{
    z-index:10;
}

.barousel_image img.current
{
    z-index:10;
}

.barousel_image img.previous
{
    z-index:5;
}

.barousel_image img.default
{    
    display:block;
}


.barousel_content
{
    position:absolute;
    padding:15px 18px 25px 18px;    
    z-index:50;
   	background-color: rgb(0 0 0 / 50%);
    color:#fff;
    width:280px;
    bottom:25px;
    left:10px;
	margin-bottom: 5px;
}

.barousel_content div
{
    display:none; 
}

.barousel_content>div 
{
  display:none;
  }

.barousel_content div.default
{
    display:block;    
}

.barousel_content p
{
    font-size:13px;
    line-height:1.2em;   
  	width:260px;  
	color: #fff;
}

.barousel_content p.header
{
    font-size:17px;
    font-weight:bold;
    line-height:22px;
    color:#fff55b;
  width:260px;
}

.barousel_content p.keep
{
    font-size:12px;
    font-weight:bolder; 
    line-height:1.2em;   
  width:100%;   
}

.barousel_content h4
{
    font-size:17px;
    font-weight:bold;
    line-height:1.2em;
    color:#fff55b;
  width:100%;
}

.barousel_content a,
.barousel_content a:hover
{
    color:#fff55b;
    background-color:transparent !important;
    text-decoration: none;
}


.barousel_nav {
 position: absolute;
 padding-top:2px !important;
 padding-right:2px !important;
    padding-left:0px !important;
    padding-bottom:0px !important;
 height: 23px;

 bottom: 0;
 z-index: 20;
 width: 100%;
 margin-bottom: 0px !important;
background-color: rgba(0, 0, 0, 0.5); /* black @ 50% */
}


.barousel_nav .counter
{    
    float:right;
    font-size:0.75em;
    color:#fff;
    margin:3px 5px 0 0;
}

.barousel_nav ul
{
    float:right;
    padding:0;
    margin:0;
}

.barousel_nav li
{
    float:left;
    padding-left:3px;
    font-size:0;
    line-height:0;
    list-style:none;
}

.barousel_nav li a
{
    display:block;
    width:25px;
    height:20px;
    background-color:#4d4d4d;
    font-size:0;
    line-height:0;
    text-decoration:none;
}

.barousel_nav li a:hover
{
    background-color:#6e6e6e;
}

.barousel_nav li a.nav-current
{
    background-color:#fff55b;
}

.barousel_nav li.prev a
{
    background-image:url(../images/barousel_link_previous.gif);
    background-repeat:no-repeat;
    background-position:0 0;
}

.barousel_nav li.next a
{
    background-image:url(../images/barousel_link_next.gif);
    background-repeat:no-repeat;
    background-position:0 0;
}

.barousel img.ajax_loader
{
    display:none;
    position:absolute;
    z-index:99;
    top:70px;
    left:135px;
}

@media (min-width:290px) and (max-width: 767px) {
.barousel {
    min-height: auto!important;
	height: 150px;
}
.barousel_image {
    height: auto!important;
    position: relative !important;
    width: 100% !important;
    z-index: 10;
}
.barousel a{
		height: 100%;
		display: block;
	}
.barousel a img{
		height: 100%;
	}
.barousel_content {
     bottom: 0;
	width:250px;
	margin-bottom: 5px;

}

.barousel_image img {
    display: none;
    position: relative!important;
    width: 100% !important;
}
.barousel_content h4
{
    font-size:13px;
    font-weight:bold;
    line-height:15px;
    color:#fff55b;
  width:100%;
}
.barousel_content p
{
    font-size:11px;
    font-weight:normal; 
    line-height:12px;   
  width:260px;   
}
}

@media (max-width: 768px) {
 .barousel_content {
  position: absolute;
  padding: 5px 18px 0 18px;
  z-index: 50;
  background-color: rgb(0 0 0 / 50%);
  color: #fff;
  width: 95%;
  bottom: 10px;
  left: auto !important;
  height: auto !important;
 }
 .barousel_content p {
  margin-bottom: 0.5em !important;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2;
  width: 100%;
 }
 .barousel_content h4
{
    font-size:13px;
    font-weight:bold;
    line-height:15px;
    color:#fff55b;
  	width:100%;
	padding-bottom: 5px;
  }
}

/*-------------> THSLIDE */
.thslide
{    
    background:#000;
    width:500px;
    height:68px;
    border-top:3px solid #000;
}

.thslide_nav_previous
{
    float:left;    
}

.thslide_nav_next
{
    float:right;    
}

.thslide_nav_previous a,
.thslide_nav_next a
{
    display:block;
    width:19px;
    height:68px;     
    text-decoration:none;  
    background-color:#4d4d4d;
    background-repeat:no-repeat;    
}

.thslide_nav_previous a
{
    background-image:url(../images/thslide_link_previous.gif);    
    background-position:0 0;
}

.thslide_nav_next a
{
    background-image:url(../images/thslide_link_next.gif);    
    background-position:100% 0;
}

.thslide_nav_previous a:hover,
.thslide_nav_next a:hover
{
    background-color:#6e6e6e;
}

.thslide_list
{
    float:left;
    overflow:hidden;   
    position:relative; 
    width:462px;
    height:68px;    
}

.thslide_list ul
{
    float:left;
    width:9000px;
    padding:0;
    margin:0;
    list-style:none;
}

.thslide_list li
{
    float:left;
    margin-right:3px;
}

.thslide_list li a
{
    display:block;
    position:relative;
    width:90px;
    height:68px;    
    text-decoration:none;
}

.thslide_list li a img
{
    position:absolute;
}

.thslide_list li a span
{
    position:absolute;
    display:block;
    width:84px;
    height:62px;    
}

.thslide_list li a:hover span,
.thslide_list li a.nav-current span
{    
    border:3px solid #fff55b;
}

/* Specific implementation */
#barousel_thslide
{
    height:446px;
}

#barousel_thslide .barousel_content
{
    bottom:81px;
}

#thslide_barousel_nav
{
    position:absolute;
    bottom:0;
}

/* Make an image look like polariod-esque in feature and destination pages */

.polaroid {
  position: relative;
  background: #ffffff;
  border: 1px solid #CCCCCC ;
  padding: 7px;
  max-width: 94%;
  text-align: center; 
  float:right;
    font-family: var(--font-body); 
    font-size: var(--fs-0);
    font-weight: normal;
    color: #666;
}

.polaroid a { text-decoration: none;
 
}

.polaroid a:hover { text-decoration: none;
 
}

.polaroid img {
  margin-bottom:5px;
  padding-bottom:0px;
  float: right;
    border: 1px solid #E5E5E5;
}

.polaroid span
{
    font-size:12px;
  font-weight:bold;
}

.polaroidreview {
  position: relative;
  background: none repeat scroll 0 0 #FAFAFA;
  border: 1px solid #cccccc;
  padding: 5px;
  max-width: 94%;
  text-align: center; 
  float:left;
    font-size: 10px;
    font-weight: bold;
    color: #666;
	margin: 3px;
}

.polaroidreview img {
  margin-bottom:5px;
  padding-bottom:0px;
  float: right;
  border: 1px solid #E5E5E5;
	max-width: 250px;
}

.polaroidreview span
{
    font-size:12px;
  font-weight:bold;
}

/*  In destination, golf trail pages - a moreinfotab  */

.moreinfotab {background:url(../images/tab_feedback.png) no-repeat;height:139px;width:34px;position:fixed;left:-2px;top:45%;z-index:1000}

.moreinfotab:hover{left:0}

/*  In destination, golf trail pages - a slide out more info  */
.slide-out-div {
          padding: 20px;
          width: 250px;
          background: #EFEFEF;
          border: 1px solid #5A5A5A;
          position:absolute;
          z-index:10000;
          left:-300px;
}        

.bxslider
{
display:none;
}

/* testimonial page in mediakit  */
#content div.testimonial
{
    display: block;
    position: relative;
    padding: 15px 20px;
    width: 95%;
    margin: 0;
      font-family: var(--font-body); 
}
div.testimonial span.quoteleft
{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 102px;
    color: #d1d1d1;
}
#content div.testimonial span.quoteright
{
    font-size: 102px;
    color: #d1d1d1;
    position: absolute;
    bottom: 0px;
    right: 5px;
}
#content div.testimonial p
{
    padding: 20px 28px;
    margin: 0;
    font-size: var(--fs-4);
    color: #121212;
    font-style: italic;
    line-height: 145%;
    text-align: justify;
}
#content div.testimonial span.author
{
    font-size: var(--fs-3);
    text-transform: uppercase;
    color: #06c;
      font-family: var(--font-body); 
    padding: 15px 0 0 28px;
    font-weight: bold;
    display: block;
}
#content div.testimonial span.credentials
{
    color: #999;
    font-style: italic;
    font-size: var(--fs-1);
    line-height: 100%;
    padding: 0 0 0 28px;
      font-family: var(--font-body); 
    font-weight: bold;
    display: block;
}
/**/
/*Clear floated left tegs*/
.clearL
{
    clear: left;
    height: 1px;
    line-height: 1px;
    font-size: 1px;
}




.cal-date {
    width: 100px;
    display: block;
    text-align: center;
    padding-top: 10px;
}


.cal-month {
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1em;
    font-weight: bold;
    background: #153F68;
    border: 1px solid #153F68;
     padding: 3px;
}


.cal-day {
    background: #fff;
    border-top: none;
    font-size: var(--fs-4);
    line-height: 18px;
    font-weight: bold;
    border: 1px solid #153F68;
    color: #444;
     padding: 3px;
}


.facebook-like {
background: #e9f0f7;
padding: 10px;
}

.facebook-like h4 {
	color: #2969b0;
	font-size: 21px;
	font-weight: Bold;
}

hr.facebook-like {

	border: 0; 
	height: 1px; 
	background: #2969b0;
	padding: 0px;
}


.newslettersubscribe {
padding: 8px;
background-color: #fff;
border-radius: 3px;
border: 1px #E5E5E5 solid;
margin-bottom: 8px;
}

.newslettersubscribe h4 {
  	font-size: var(--fs-5);
	font-weight: bold;
}

.yellow-alertbox {
	background:#fef3cd;
	margin:15px 0;
	padding:10px;	
}

.yellow-alertbox h4 {
	color: #FAC51C;
	font-size: 21px;
	font-weight: 300;
}

hr.yellow-alertbox {

	border: 0; 
	height: 1px; 
	background: #FAC51C;
	padding: 0px;
}



/* For Events Page */
div.event-label {
  width: 75px;
  border-bottom:none;
  margin: 0px 10px 0px 10px;
  padding: 0px;
  text-align:right;
  float:left;
  }
div.event-entry {
  width: 400px;
  border-bottom:none;
  margin: 0px 10px 0px 0px;
  padding: 0px;
  text-align:left;
  float:left;
  }


   /*Tweet bubble style*/
p.tweet
{
    float: right;
    padding: 5px;
    margin: 2px 0px;
}     

/* IMAGE COURSE FRAME */
.courseimage {
    padding: 0px;
    position: relative;
}

.courseimage img{
	display: block;
}

.golfimageflag {
	overflow: hidden;
	position: relative;
}

.flag-special {
    background-color: rgba(0, 0, 0, 0.5); /* black @ 50% */
}
.flag {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
    padding: 5px 10px;
    border-radius: 0px 0px 0px 0px;
}
.flag, .flag-listing {
    font-size: .75em;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    text-shadow: none;
}

.flag-left {
    position: absolute;
    top: 10px;
    left: 10px;
    margin: 0;
    padding: 5px 10px;
    border-radius: 0px 0px 0px 0px;
    font-size: .75em;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    text-shadow: none;
}


/* IMAGE AUTHOR FRAME */
.authorimageframe {
  margin-right: 20px;
  float: left;
  padding: 5px;
  border: 1px solid #ccc;
}

.authorimage {
  border: 1px solid #ccc;
    padding: 0px;
    position: relative;
}

.authorimage img{
	display: block;
}

.authorimageframe a img
{
    border: none 0;
  display: block;
  width: 100%;
}

.image img {
  display: block;
}

.authorimageframeright {
  margin-right: 20px;
  float: right;
  padding: 5px;
  border: 1px solid #ccc;
}

.authorimageright {
  border: 1px solid #ccc;
}



.packagerimage {
    border: medium none !important;
    position: relative;
}
.packagerimageframe a img {
    width: 100% !important;
}

.packagerimageframe {
    border: 1px solid #ccc;
    float: left;
    margin-right: 20px;
    padding: 5px;
    width: 250px;
}


.logoimage {
  border: 1px solid #ccc;
  padding: 0px;
  margin: 0px;
}

.logoimageframe {
    border: 1px solid #ccc;
    float: right;
    margin-right: 20px;
    padding: 5px;
}

.logoimageframe a img {
  width: 100% !important;
  margin: 0;
}

.logoimageframe .logoimage img {
    margin: 0;
}

@media (max-width: 767px) {
.logoimage {
  border: 1px solid #ccc;
  width: 55px;
  padding: 0px;
  margin: 0px;
  height: 55px;
}

.logoimageframe {
    border: 1px solid #ccc;
    float: right;
    margin-right: 3px;
    padding: 3px;
}

.logoimageframe .logoimage img {
    margin: 0;
}
	 
 }


.coursesimage {
    border: 1px solid #ccc;
  width: 250px;
  padding: 0px;
  margin: 0px;
  max-height: 125px;
}
.coursesimageframe a img {
    width: 100% !important;
  margin: 0;
}

.coursesimageframe {
    border: 1px solid #ccc;
    float: left;
    margin-right: 20px;
    padding: 5px;
}



/************ golf package homepage section ************/


.golfpackageimageheading {
		color: #2969B0;
		text-decoration: none;
		font-family: var(--font-body); 
		font-weight: bolder;
		text-transform: capitalize;
		font-size: var(--fs-3);
	}

.golfpackageimageheading:visited {
		color: #2969B0;
	}

	.golfpackageimageheading:hover {
		color: #5e8bcd;
	}

.golfpackageimage {
	overflow: hidden;
	position: relative;
}




/* // Video Image Hover Icon */
.videoimageframe {
	border:1px solid #CCCCCC;
	float:left;
	margin-right:20px;
	margin-bottom:10px;
	padding:5px;
	width:124px;
	}

.videoimageframe p {
  font-size:9px;
  margin: 2px !important;
}

.videoimage a:link, .videoimage a:active, .videoimage a:visited {
	border: medium none !important;
	display: block;
	width: 100%;
}

.videoimage img {
	border:1px solid #CCCCCC;
	padding: 0px;
	width: 120px;
}
.videoimage span {
	-moz-background-clip:border;
	-moz-background-inline-policy:continuous;
	-moz-background-origin:padding;
	background:transparent url(../images/play_icon.png) no-repeat scroll center center;
	height:90px !important;
	position:absolute;
	width:120px !important;
}

/*  video-container is landscape  */

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;

}


.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

/*  video-container-p is portriat videos  */

.video-container-p {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
	height: 600px;

}


.video-container-p iframe,
.video-container-p object,
.video-container-p embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;

}


.map-container iframe,
.map-container object,
.map-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}


/* // Video Image Hover Icon */
.videoimagehome {
position: relative;
padding-right: 5px;
overflow: hidden;
}


.videoimagehome span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	background: url(../images/white-play.png) no-repeat center center;
	transform: scale(0.6);
	transition: all 0.3s;
}

.videoimagehome:hover span{
	background: url(../images/gray-play.png) no-repeat center center;
}
	
.videoimagehome img{
		transform: scale(1);
       	min-width: 100%;
		transition: all 0.3s;
	}
.videoimagehome:hover img{
		transform: scale(1.05)
	}

.videoimagehomecaption {
	background-color: rgba(0, 0, 0, 0.5); /* black @ 50% */
    bottom: 5px;
    color: #fff;
    font-size: var(--fs-0);
    font-weight: bold;
    position: absolute;
    text-align: left;
    padding: 1%;
	display: block;
	width: 96%;
}

/************ video section ************/

.videoimagevideosmall {
		color: #c0c0c0;
		text-decoration: none;
		font-family: var(--font-body); 
		font-weight: 700;
	font-size: 10px;
		text-transform: uppercase;
	}

.videoimagevideoheading {
		color: #2969B0;
		text-decoration: none;
		font-family: var(--font-body); 
		font-weight: 800;
		font-size: var(--fs-4);
	}

.videoimagevideoheading:visited{
		color: #2969B0;
	}

	.videoimagevideoheading:hover{
		color: #5e8bcd;
	}

/************ wall_title ************/
.wall_title {
		font-weight: bold;
	text-transform: capitalize;
	}

.wall_titledate {
	font-size: 10px;
	color: #797979;
	}

/************ image zoom on hover ************/

.imagezoom a{
	   background-color: rgba(0, 0, 0, 0.5); /* black @ 50% */
}

.imagezoom {
	padding-right: 0 !important;
}
.imagezoom .videoimagehomecaption{

width: 100%;
    bottom: 0px;
}


/************ articles section ************/

.articleimagesmall {
		color: #c0c0c0;
		text-decoration: none;
		font-family: var(--font-body); 
		font-weight: 700;
	font-size: 10px;
		text-transform: uppercase;
	}

.articleimageheading {
		color: #2969B0;
		text-decoration: none;
		font-family: var(--font-body); 
		font-weight: bolder;
		text-transform: capitalize;
		font-size: var(--fs-4);
	}

.articleimageheading:visited{
		color: #2969B0;
	}

	.articleimageheading:hover{
		color: #5e8bcd;
	}

.articleimage img{
		transform: scale(1);
       	min-width: 100%;
		transition: all 0.3s;
	display: block;
	}

.articleimage{
	overflow: hidden;
}

.articleimage:hover img{
		transform: scale(1.05)
	}

/************ A DIV FOR NEWS ************/
div.news h4
{margin-left: 10px;}

div.news a:link, div.news a:visited
{
    text-decoration: none;
    color: #344C64;
}
div.news a:hover
{
    text-decoration: underline;
}

div.news hr {border: none 0; 
border-top: 1px dotted #C0C0C0; 
height: 1px; margin: 10px 0px;}

div.news p {
  margin-left: 14px;
  margin-bottom: 0.76em;}




/* http://www.golftrips.com/travel/index.cfm  */
.date1{width:49px; height:49px; background:url(../images/calendar.gif) no-repeat;}
.date1 .month{width:100%; text-align:center; position:relative; top:2px; color:#fff; font-weight:600;}
.date1 .day{width:100%; text-align:center; position:relative; top:6px; font-size:18px; color:#404040; font-weight:700;}
.eventDate1
{
    float: left;
    padding-bottom: 10px;
    padding-right: 10px;
}

.travelcolumn {
      margin-bottom: 30px;
      min-height: 450px;
      padding-left: 5px;
      padding-right: 5px;
      padding-top: 0px;
      width: 320px;
      margin-right: 10px;
      margin-left: 10px;
      float: left;
}



.travelcolumn a img
{
    border: none 0;
}

.post-content {
    overflow-x: hidden;
    overflow-y: hidden;
}

.post-title {
    color: #333333;
    font-size: var(--fs-3);
    line-height: 20px;
    margin-bottom: 0;
    margin-top: 5px;
}
.post-title a {
    color: #333333;
}
.post-title a:hover {
    color: #747474;
}

.post-meta a {
    color: #555555;
  text-decoration:none;
}
.post-meta a:hover {
    color: #333333;
}

.post-meta {
    border-bottom-color: #E5E5E5;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-top-color: #E5E5E5;
    border-top-style: solid;
    border-top-width: 1px;
  background: #E5E5E5;
    font-size: var(--fs-0);
  font-weight:bold;
    line-height: 16px;
    margin-bottom: 5px;
  font-style:italic;
    padding-bottom: 4px;
    padding-left: 3px;
    padding-right: 0;
    padding-top: 5px;
  width: 320px;
}

.post-excerpt p {
    margin-bottom: 12px;
    font-size: .75em;
}

#voteupImage {margin-top:0; vertical-align:top;}


/* Online Agreement */        
div.onlineagreement h2
{
    text-transform: uppercase;
      font-family: var(--font-body); 
    font-size: 1.2em;
    font-weight: bold;
    background: #b1b1b1 url(../images/ats-h2-bg.gif) repeat-x;
    color: #555;
    padding: 4px 9px;
    letter-spacing: -1px;
    margin: 0px 0px 10px 0px;
}

div.onlineagreement p {
  margin: 10px 0px 10px 20px;
  }

div.onlineagreementname {
  width: 400px;
  margin: 10px 0px 10px 20px;
  padding: 0px;
  font-size:14px;
  border-bottom:1px dotted #C0C0C0;
  font-weight: bold;
  float:left;
  }
  
div.onlineagreementcompany {
  width: 400px;
  margin: 10px 0px 10px 20px;
  padding: 0px;
  font-size:14px;
  border-bottom:1px dotted #C0C0C0;
  float:left;
  font-weight: bold;
  }
  
div.onlineagreementaddress {
  width: 400px;
  margin: 10px 0px 10px 20px;
  padding: 0px;
  font-size:14px;
  border-bottom:1px dotted #C0C0C0;
  float:left;
  font-weight: bold;
  }

div.onlineagreementaddress2 {
  width: 400px;
  margin: 10px 0px 10px 20px;
  padding: 0px;
  font-size:14px;
  border-bottom:1px dotted #C0C0C0;
  float:left;
  font-weight: bold;
  }

div.onlineagreementtitle1 {
  width: 400px;
  border-bottom:none;
  margin: 0px 0px 20px 20px;
  padding: 0px;
  float:left;
  font-style:italic;
  font-size:12px;
  }
  
div.onlineagreementtitle2 {
  width: 400px;
  border-bottom:none;
  margin: 0px 0px 20px 20px;
  padding: 0px;
  float:left;
  font-style:italic;
  font-size:12px;
  }
  
div.onlineagreementtitle3 {
  width: 400px;
  border-bottom:none;
  margin: 0px 0px 20px 20px;
  padding: 0px;
  float:left;
  font-style:italic;
  font-size:12px;
  }
  
div.onlineagreementtitle4 {
  width: 400px;
  border-bottom:none;
  margin: 0px 0px 20px 20px;
  padding: 0px;
  float:left;
  font-style:italic;
  font-size:12px;
  }
  
div.course-amenities {
  width: 150px;
  border-bottom:none;
  margin: 0px 10px 0px 10px;
  padding: 0px;
  text-align:right;
  float:left;
  }
div.course-amenities-yn {
  width: 50px;
  border-bottom:none;
  margin: 0px 10px 0px 0px;
  padding: 0px;
  text-align:left;
  float:left;
  }
div.course-amenities2 {
  width: 150px;
  border-bottom:none;
  margin: 0px 10px 0px 10px;
  padding: 0px;
  text-align:right;
  float:left;
  }
div.course-amenities-yn2 {
  width: 90px;
  border-bottom:none;
  margin: 0px 10px 0px 0px;
  padding: 0px;
  text-align:left;
  float:left;
  }
  
div.course-amenities3 {
  width: 150px;
  border-bottom:none;
  margin: 0px 10px 0px 10px;
  padding: 0px;
  text-align:right;
  float:left;
  }
div.course-amenities-yn3 {
  width: 400px;
  border-bottom:none;
  margin: 0px 10px 0px 0px;
  padding: 0px;
  text-align:left;
  float:left;
  }
  

   /* delete destination */
  
div.destination {
  width: 200px;
  height: 350px;
  border-bottom:none;
  margin: 0px 16px 5px 0px;
  padding: 0px;
  text-align:left;
  float:left;
  }
  
  div.destination img
{
  padding: 3px 3px 3px 3px;
    border: 1px solid #CCCCCC;
}

div.destination h4
{
  padding: 5px 4px 3px 0px;
line-height: 22px;
font-size: var(--fs-3);
}

div.destination a:visited h4, div.destination a:link h4{
color:#060;
}

div.destination a:hover h4{
color:#060;
text-decoration:none;
}

div.destination p {
font-size:12px;
}

div.destinationlist {
  width: 250px;
  min-height: 50px;
  border-bottom: none;
  margin: 10px 2px 15px 0px;
  padding: 0px;
  text-align:left;
  float:left;
  }
  
  
  /*golf features2*/
  
  .golf-packages-logo
  {
	height: 100px;
	width: 100px;
	float: right;
	padding-right: 20px;
	padding-left: 10px;
  }
  
  @media (max-width: 767px) {
	 
	.golf-packages-logo {
	height: 60px;
	width: 60px;
	float: right;
	padding-right: 6px;
	padding-left: 6px;
	}
}
  
  
  
.golf-packages
{
    clear: left;
    background-color: #ffffff;
    margin-bottom: 10px;
	overflow: initial; 

}



.golf-packages p
{
padding: 5px 10px 10px 10px;
}

.golf-packages-desc p
{
padding: 10px 10px 10px 10px;
font-size:13px;
}

.golf-packages h1
{
    text-transform: uppercase;
    color: #15559D;

}

@media (max-width: 767px) {
	 
	.golf-packages h1 {
	text-transform: uppercase;
    font-size: var(--fs-4);
    line-height: 1.1em;
	letter-spacing: 0px;
    color: #15559D;
	}
}


.golf-packages h2
{
    text-transform: uppercase;
    color: #404040;
    margin: 20px 0px;
}

.golf-packages-pricing {
	font-size: var(--fs-4);
	font-weight: bold;
	padding-bottom: 5px;
	line-height: 22px;
	
}

.golf-packages-rounds {
	font-size: var(--fs-3);
	font-weight: bold;
	color: #7a7a7a;
	padding-bottom: 5px;
	line-height: 18px;
	
}

.golf-packages-dates {
	font-size: var(--fs-0);
	color: #7a7a7a;
	padding-bottom: 5px;
	
}

@media (max-width: 767px) {
	 
	.golf-packages h2 {
	font-size: 1.15em;
	}
}

.golf-packages h3
{
    font-size: 1.25em;
    color: #808080;
    padding: 3px 8px 4px 10px;
    letter-spacing: -1px;
    margin: 0px;
}

.golf-packages h4
{
    font-size: var(--fs-3);
    color: #669933;
    padding: 3px 8px 4px 10px;
  font-variant: small-caps;
    margin: 0px;
  font-style: italic;
  padding-left: 10px;
}


.golf-packages h2 a:link, .golf-packages h2 a:visited {color: #fff; text-decoration: none;}

div.golf-packages2 {
  width: 150px;
  float:left;
  }
  
div.golf-packages3 {
  width: 325px;
  float:left;
  }
  
  
div.golf-packages4 {
  width: 325px;
  float:left;
  }


/*feature style*/
div.featurelist img
{
    border: 2px solid #ccc;
    float: right;
    margin: 2%;
    padding: 1%;
    width: 92%;
}

/*End golf features*/

/*golf features2*/
.golf-features2
{

    border: 1px solid #bbb;
    clear: left;
    background-color: #ffffff;
    margin-bottom: 10px;

}

.golf-features2 p
{
padding: 10px 10px 10px 10px;
}

.golf-features2 h4
{
    padding: 10px 10px 10px 10px;
}

.golf-features2 h2
{
    text-transform: uppercase;
    font-size: 1.45em;
    background: #2969B0;
    color: #fff;
    padding: 3px 8px 4px 10px;
    letter-spacing: -1px;
    margin: 0px;
}

@media (max-width: 768px) {
	
	.golf-features2 h2
		{ font-size: 1.15em; }
}


.golf-features2 h3
{
    font-size: 1.25em;
    color: #808080;
    padding: 3px 8px 4px 10px;
    letter-spacing: -1px;
    margin: 0px;
}





.golf-features2 h2 a:link, .golf-features2 h2 a:visited {color: #fff; text-decoration: none;}

.golf-features3
{

    border: 1px solid #bbb;
    clear: left;
    background-color: #ffffff;
    margin-bottom: 10px;
  overflow:auto;

}

.golf-features3 p
{
padding: 10px 10px 10px 10px;
}

.golf-features3 h4
{
    padding: 10px 10px 10px 10px;
}

.golf-features3 h2
{
    text-transform: uppercase;
    font-size: 1.45em;
    padding: 3px 8px 4px 10px;
    letter-spacing: -1px;
    color: #B1B1B1;
    margin: 0px;
}

@media (max-width: 768px) {
	
	.golf-features h3
		{ font-size: 1.15em; }
}


.golf-features3 h2 a:link, .golf-features2 h2 a:visited {color: #fff; text-decoration: none;}

/*End golf features*/

/*Start golf box - similiar*/
.golf-box
{
    padding: 10px 10px 10px 10px;
    border: 1px solid #bbb;
    clear: left;
    background-color: #ffffff;
    margin-bottom: 10px;
}

/*Start golf box - similiar FOR VIDEO on HOME PAGE*/
.golf-box2 h2 a:link, .golf-box2 h2 a:visited
{ 
color: #fff;
text-decoration: none;
}

.golf-box2
{
    border: 1px solid #bbb;
    clear: left;
    background-color: #ffffff;
    margin-bottom: 10px;
}

.golf-box2 h2
{

text-transform: uppercase;
font-size: 1.45em;
background: #000077 url(../images/stay-play-h2-bg.gif) repeat-x;
color: #fff;
padding: 3px 8px 4px 10px;
letter-spacing: -1px;
margin:0;
margin-bottom:15px;
}

.golf-box2 p
{
 margin-top:10px;
 margin-left:10px;
}




.searchgolf { 
	background: #f8f8f8; 
	border: 1px solid #F0F0F0;
	margin: 10px auto 10px auto; 
	position: relative; 
	width: 98%; }

  .searchgolf form
  { height: 100%; 
	  overflow: hidden; 
	  padding: 5px 0 20px 0;
	  border-radius: 3px;
}
  
    .searchgolf fieldset
    { float: left; 
		padding: 5px 10px 5px 20px; 
		width: 45%; 
		margin:0; 
		border:0 none;}
                    
    .searchgolf label
    { color: #404040; 
		display: block; 
		font-size: var(--fs-2); 
		font-weight:bold; 
		line-height: 24px; }
    
    .searchgolf .altLabel, .search legend
    { clear: both; color: #037; display: block; float: left; font-size: var(--fs-2); font-weight: bold; width: 100%; }
    
      .searchgolf legend
      { float: none; }
    
      .searchgolf label span
      { color: #000; font-size: 12px; }
    
    .searchgolf .optionDescription
    { font-size: 12px; padding: 0 5px 0 5px; }
  
    .searchgolf input, .searchgolf select, .searchgolf textarea { 
		border: 1px solid #CCC; 
		font-family: var(--font-body); 
		font-size: 12px;
		font-weight: 500;
		padding: 8px; 
		width: 95%; 
		margin:0; 
		color:#404040; 
		background-color:#fff;}
        
    .searchgolf .altSelect
    { float: left; font-size: var(--fs-0); margin: 0 0 5px 0; padding: 1px; width: 77%; }
    
    .searchgolf .spacedSelect
    { margin-left: 70px; }
    
    .searchgolf .inputAuto
    { border: none; padding: 0; vertical-align: middle; width: auto; }
    
    .searchgolf .inputSmall
    { font-size: var(--fs-0); width: 15%; }
    
.searchgolf .advancedSearch, .searchgolf .advancedSearchClose
{ position: absolute; right: 10px; top: 42px; }

.searchgolf .advancedSearch a, .searchgolf .advancedSearch a:visited
{ /*background: url(../images/content/img_open.gif) no-repeat 0 2px;*/ padding: 0 0 0 15px; }

.searchgolf .advancedSearchClose a, .searchgolf .advancedSearchClose a:visited
{ /*background: url(../images/content/img_close.gif) no-repeat 0 2px;*/ padding: 0 0 0 15px; }



/*Added new background image for search button*/    
.searchgolf .standardButton {
  font-size: var(--fs-2); 
  margin: 10px 20px 20px 10px;
  padding: 5px 10px;
  color: #fff;
  background: #153F68;
border-radius: 4px;
width: 150px;
height: 30px;
	float: right;
	border: none;
}

.searchgolf .standardButtonRight
{ float: right; margin: 30px 0 0 0; }

.searchCategory
{ background: #FFC; color: #333; }

@media (min-width:290px) and (max-width: 767px) {
.searchgolf fieldset {    border: 0 none;    float: none!important;    margin: 0 auto!important;    padding: 0!important;    width: 93%!important;}
.searchgolf input, .searchgolf select, .searchgolf textarea{ width:100%!important;}
.searchgolf input{padding: 2%!important;    width: 96%!important;}

.searchgolf {width: 96%!important;}
.section  hr{clear: both; display: block;}
.searchgolf .standardButton {display: block; float: left; height: auto !important; margin: 0 !important; padding: 6px 3px 10px !important;  width: 84px !important;}
}

/*This style will prevent from overriding focised select list*/
.searchgolf input:focus, .searchgolf select:focus, .searchgolf textarea:focus
{
    color: #3D5771;
    border: 1px solid #153F68;
}


#packages h2 a {
line-height: 25px; 
}



/*right-article*/
.right-article-col
{
    width: 200px;
    float: right;
    margin: 10px;
    margin-top: 0px;
}
.right-article-col .right-art-col-links
{
    border: 1px solid #bbb;
    background-color: #FFFFFF;
    margin-bottom: 8px;
    padding-bottom: 3px;
}
.right-article-col h2
{
    font-size: 1.15em;
      font-family: var(--font-body); 
    background: #2969B0;
    padding: 4px 8px;
    text-transform: none;
}
.right-article-col ul
{
    padding: 5px 7px;
    list-style-image: none;
    list-style-type: none;
}
.right-article-col li
{
    line-height: 20px;
    background: url(../Images/ats-li-bg.gif) no-repeat left 8px;
    padding-left: 12px;
}
.right-article-col li a
{
    color: #444;
}
/*End right-article*/

/*right-article in articles*/
.right-article-col2
{
  width: 300px;
    float: right;
    margin: 10px;
    margin-top: 0px;
}
.right-article-col2 .right-art-col-links2
{
    border: 1px solid #bbb;
    background-color: #FBF9F9;
    margin-bottom: 8px;
    padding-bottom: 3px;
}
.right-art-col-links2 p
{
padding-left: 5px;
padding-right: 5px;
padding-top: 5px;
}


.right-article-col2 h2
{
	color: #EEE; /*This color should be used for this tag.*/
    margin: 0px 0px 0px 0px; /*Margin set to 0 to float header to the top*/
  	font-size: 1.15em;
    font-family: var(--font-body); 
    background: #2969B0;
    padding: 4px 8px;
    text-transform: none;
}
.right-article-col2 ul
{
    padding: 5px 7px;
    list-style-image: none;
    list-style-type: none;
}
.right-article-col2 li
{
    line-height: 20px;
    background: url(../../images/ats-li-bg.gif) no-repeat left center;
    padding-left: 12px;
}
.right-article-col2 li a
{
    color: #444;
}
/*End right-article*/

.addthis
{
    float:left; 
  padding:2px;
}

.addthis_sharing_toolbox
{
    float:left; 
}

@media screen and (max-width: 1024px)
{
 .barousel{
  height:310px;
 }
 
 .barousel_content p.keep
  { display: block !important;}
  
  .ad-frame
  {
    padding: 0px;
    margin-bottom: 8px;
  }
  
  .ad-frame2
  {
    padding: 0px;
    margin-bottom: 8px;
  }
  
    p.thumbnail2, .newslettersubscribe, #topbanner, .site_sections, .banners_right, .ad-frame-600, .addthis_sharing_toolbox, .moreinfotab, .search_box, .barousel_content p, .newslettersubscribe
   { display: none !important; }
 
}
@media screen and (max-width: 940px)
{
 .barousel{
  height:287px;
 }
 
 .barousel_content p.keep
  { display: block !important;}
  
  .ad-frame
  {
    padding: 0px;
    margin-bottom: 8px;
  }
  
  .ad-frame2
  {
    padding: 0px;
    margin-bottom: 8px;
  }
  
    p.thumbnail2, .newslettersubscribe, #topbanner, .site_sections, .banners_right, .ad-frame-600, .addthis_sharing_toolbox, .moreinfotab, .search_box, .barousel_content p, .newslettersubscribe
   { display: none !important; }
 
}

@media screen and (max-width: 767px)
{
 .barousel{
  height: 277px;;
 }
 .barousel_content{
  width:280px;
 }
 
 .barousel_content p.keep
  { display: block !important;}
  
  .ad-frame
  { display: none !important; }
  
  .ad-frame2
  { display: none !important; }
	
	 .ad-frame3
  { display: none !important; }
  
    p.thumbnail2, .newslettersubscribe, #topbanner, .site_sections, .ad-frame-600, .addthis_sharing_toolbox, .moreinfotab, .search_box, .barousel_content p, .newslettersubscribe
   { display: none !important; }
   
   .barousel_content p.keep, .banners_right
  { display: block !important;}
 
}

@media screen and (max-width: 460px)
{
 .barousel{
  height: 180px;;
 }
 .barousel_content{
  width:280px;
 }
 
 .barousel_content p.keep
  { display: none !important;}
  
  .ad-frame
  {
    padding: 0px;
    margin-bottom: 8px;
  text-align: center;
  }
  
  .ad-frame2
  {
    padding: 0px;
    margin-bottom: 8px;
  text-align: center;
  }
  
  
    p.thumbnail2, .newslettersubscribe, #topbanner, .site_sections, .banners_right, .ad-frame-600, .addthis_sharing_toolbox, .moreinfotab, .search_box, .barousel_content p, .newslettersubscribe
   { display: none !important; }
}

.advanced_option input[type="checkbox"] {
float: left;
height: 18px;
width: 20px;
margin: 3px;
padding: 2px;
}

.coupon_icon {
vertical-align: top;
	height: 20px;
}

 /*tooltip hover over icons i.e coupons*/

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 144px;
    background-color: #939292;
    color: #fff;
    text-align: center;
	font-size: var(--fs-0);
	  font-family: var(--font-body); 
    border-radius: 6px;
    padding: 5px 0;
    
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip {border-bottom: medium none !important;}

 /*icon on coupons*/
[class^="icon-coupons-"], [class*=" icon-coupons-"] {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: .3em;
    line-height: 24px;
    vertical-align: text-top;
    background-image: url("../images/icon-coupons.png");
    background-position: 24px 24px;
    background-repeat: no-repeat;
    margin-top: 0;
    background-color: #0F3E72;
    border-radius: 4px;
	}
	
.icon-coupons-9 {
    background-position: 0 0;
}
	
.icon-coupons-18 {
  background-position: -24px 0;
}
.icon-coupons-27 {
  background-position: -48px 0;
}
.icon-coupons-36 {
  background-position: -72px 0;
}

.icon-coupons-45 {
  background-position: -96px 0;
}

.icon-coupons-54 {
  background-position: -120px 0;
}

.icon-coupons-unlimited {
  background-position: -144px 0;
}

.icon-coupons-cart {
  background-position: -168px 0;
}

.icon-coupons-walking {
  background-position: -192px 0;
}

.icon-coupons-gps {
  background-position: -216px 0;
}
.icon-coupons-jr {
  background-position: -240px 0;
}
.icon-coupons-sr {
  background-position: -264px 0;
}
.icon-coupons-1 {
  background-position: -288px 0;
}	
.icon-coupons-2 {
  background-position: -312px 0;
}
.icon-coupons-3 {
  background-position: -336px 0;
}
.icon-coupons-4 {
  background-position: -360px 0;
}
.icon-coupons-12 {
  background-position: -384px 0;
}
.icon-coupons-24 {
  background-position: -408px 0;
}
.icon-coupons-14 {
  background-position: -432px 0;
}
.icon-coupons-cartreq {
  background-position: -456px 0;
}




 /*Mailchimp edited*/
 #mc_embed_signup input.email {
    background: #fff !important;
}
#mc_embed_signup input.button {
    background: #9b9b9b !important;
	font-size: var(--fs-1);
	letter-spacing: normal;
	font-weight: normal;
}

#mc_embed_signup input:invalid, textarea:invalid {
    -webkit-box-shadow: 0 0 2px #928E8E !important;
	box-shadow: 0 0 2px #928E8E !important;
}

#mc_embed_signup .mc-field-group .asterisk {
    top: 9px !important;
}

#mc_embed_signup h2 {
}

#mc_embed_signup .mc-field-group label {
	color: #595959 !important;
}

#mc_embed_signup .asterisk {
    color: #928E8E !important;
	margin: 2px;
}

#mc_embed_signup form {
    border: thin #928E8E !important;
}

#mc_embed_signup div.mce_inline_error {
    margin: 0 0 1em 0;
    padding: 5px 10px;
    background-color: #928E8E !important;
    font-weight: bold;
    z-index: 1;
    color: #fff;
}



#viewlatestnewsletter{float: right}



.avatar-circle-right {
    border-radius: 50%;
	width: 70px;
	height: 70px;
	float: right;
	margin-right: 20px;
	margin-left: 10px;
}

.avatar-circle-left {
    border-radius: 50%;
	width: 70px;
	height: 70px;
	float: left;
	margin-left: 20px;
	margin-right: 10px;
}





/* ============================================================
isa - kill this at some point. NOW ALERTS BELOW
   ============================================================ */

/* Base alert */
.isa_info, .isa_success, .isa_warning, .isa_error{
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: var(--alert-radius);
  box-shadow: var( --alert-shadow);
  background: #ffffff;

  /* modern layout */
  display: flex;
  align-items: flex-start;
  gap: 10px;

  /* readable type */
  font-size: var(--fs-3);          /* <- calmer than fs-4 */
  line-height: 1.35;
  font-weight: 600;                /* not full bold */
  color: var( --alert-text);

  /* subtle border + left rail */
  border: 1px solid rgba(20, 40, 60, 0.12);
  border-left-width: 6px;
}

/* If you want the whole card tinted (optional) */
.isa_info{    background: var(--alert-info-bg);    border-left-color: var(--brand-primary); }
.isa_success{ background: var(--alert-success-bg); border-left-color: var(--brand-success); }
.isa_warning{ background: var(--alert-warn-bg);    border-left-color: var(--brand-warning); }
.isa_error{   background: var(--alert-error-bg);   border-left-color: var(--brand-alert); }

.isa--compact {
  padding: 8px 10px;
  font-size: var(--fs-2);
  border-left-width: 4px;
  box-shadow: none;
}

/* Icon slot (preferred) */
.isa__icon{
 font-size: 1.15em;
  line-height: 1;
  margin-top: 2px;
  color: currentColor;
}

/* Backward compatible: if you still use <i> icons */
.isa_info i, .isa_success i, .isa_warning i, .isa_error i{
  margin: 0;            /* kill the big old margins */
  font-size: 1.15em;    /* stop the 2em shouting */
  line-height: 1;
  vertical-align: baseline;
  opacity: 0.95;
	color: currentColor; /* inherit alert color */
}

/* Links inside alerts */
.isa_info a, .isa_success a, .isa_warning a, .isa_error a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Optional: tighter on mobile */
@media (max-width: 520px){
  .isa_info, .isa_success, .isa_warning, .isa_error{
    padding: 10px 12px;
    font-size: var(--fs-2);
  }
}

/* ============================================================
   ALERT COMPONENT
   ============================================================ */

.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin: 12px 0;
  padding: 14px 16px;

  background: #fff;
  color: var(--alert-text);
  font-size: var(--fs-3);
  line-height: 1.35;
  font-weight: 600;

  border-radius: var(--alert-radius);
  border: 1px solid rgba(20, 40, 60, 0.12);
  border-left-width: 6px;

  box-shadow: var(--alert-shadow);
}

/* Icon */
.alert__icon {
  flex: 0 0 auto;
  font-size: 1.2em;
  line-height: 1;
  margin-top: 2px;
  color: currentColor;
}

/* Content */
.alert__content {
  flex: 1 1 auto;
}

.alert__content strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

/* Links inside alerts */
.alert a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   ALERT VARIANTS
   ============================================================ */

.alert--info {
  background: var(--alert-info-bg);
  border-left-color: var(--brand-primary);
}

.alert--success {
  background: var(--alert-success-bg);
  border-left-color: var(--brand-success);
}

.alert--warning {
  background: var(--alert-warning-bg);
  border-left-color: var(--brand-warning);
}

.alert--error {
  background: var(--alert-error-bg);
  border-left-color: var(--brand-error);
}

/* ============================================================
   ALERT MODIFIERS
   ============================================================ */

.alert--compact {
  padding: 8px 10px;
  font-size: var(--fs-2);
  box-shadow: none;
  border-left-width: 4px;
}

.alert--compact .alert__icon {
  font-size: 1em;
}


/* New Tabs - Course Profile, Destination and Golf Trails ============================================================================= */

.tabs {
  display: flex;
  flex-wrap: wrap;
background: #fff; 
}

.tabs label {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  display: block;
  padding: 1rem 1rem;
  margin-right: 0.2rem;
  cursor: pointer;
	background: #E5E5E5; 
	color: #333;
  font-weight: bold;
  transition: background ease 0.2s;
	border-right-style: solid;
	border-color: #fff;
}

.tabs .tab {
  -webkit-box-ordinal-group: 100;
  -webkit-order: 99;
  -ms-flex-order: 99;
  order: 99;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  display: none;
  padding: 1rem;
  background: #fff;
}

.tabs input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.tabs input[type="radio"]:checked + label { background: #2969b0; color: #fff;}

.tabs input[type="radio"]:checked + label + .tab { display: block; }
 @media (max-width: 45em) {

.tabs .tab,  .tabs label {
  -webkit-box-ordinal-group: NaN;
  -webkit-order: initial;
  -ms-flex-order: initial;
  order: initial;
}

.tabs label {
  width: 100%;
  margin-right: 0;
  margin-top: 0.2rem;
border-bottom-style: solid;
	border-right-style: none;
}
}


.appcorners {
  border-radius: 10px;
  border: 2px solid #cccccc;
  padding: 10px;
	float: right;
	margin: 10px;
}


.stayandplaybox 
{ border-radius: 5px;
  border: 2px dashed #cccccc;
  padding: 10px;
	margin: 10px;
}

.tabs input[type="radio"]:hover + label {
	background: #5a9ae0;
	color: #fff;
}

.navigation-body.scroll-momentum{
	max-width: 1400px !important;
	margin: auto !important;
}
.navigation-body-header{
	padding: 0 !important;
}

/* Text expander - in golf course search */

/* clickable summary */
.options-toggle > summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 600;
  color: #163f6b;
  list-style: none;
}

/* remove default browser arrow */
.options-toggle > summary::-webkit-details-marker {
  display: none;
}

/* swap text */
.options-toggle .label-close {
  display: none;
}

.options-toggle[open] .label-open {
  display: none;
}

.options-toggle[open] .label-close {
  display: inline;
}

/* CSS chevron */
.options-toggle > summary::after {
  content: "›";              /* chevron */
  font-size: 1.1em;
  transform: rotate(90deg);  /* points down */
  transition: transform 200ms ease;
  display: inline-block;
}

/* rotate to point up */
.options-toggle[open] > summary::after {
  transform: rotate(-90deg);
}

/* content spacing */
.options-content {
  margin-top: 8px;
}
