    /* START - buying guide table of contents flex grid */
    .buyer-guide-table-of-content-nav {
        display: flex;
        justify-content: flex-start;
        margin-left: 5%;
        width: 60%;
    }
    
    .buyer-guide-table-of-content-nav ul {
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
    }
    
    .buyer-guide-table-of-content-nav li {
        padding: 0 10px;
        flex: 1 0 calc(50% - 20px);
    }
    
    
    .buyer-guide-table-of-content-nav a {
        text-decoration: none;
        color: #000;
        font-weight: 600;
    }

    /* END - buying guide table of contents flex grid */

    /* START - top buying guide flex grid */

    .golf-buying-guide-container-section {
        display: inline-block;
    }

    .container-golf-buying-guide-page {
        display: grid;
        grid-gap: 4%;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-auto-flow: column;
        /*justify-content: center;
        align-content: center;*/
        grid-template-areas:
            "golf-driver-buying-guide golf-ball-buying-guide"
            "golf-putter-buying-guide golf-bag-buying-guide"
            "golf-hybrid-buying-guide golf-shoes-buying-guide"
            "golf-wedge-buying-guide golf-irons-buying-guide"
            "complete-set-buying-guide golf-apparel-buying-guide";
        margin: 1% 0 8% 0;
    }

    .golf-driver-buying-guide {
        grid-area: golf-driver-buying-guide;
    }

    .golf-ball-buying-guide {
        grid-area: golf-ball-buying-guide;
    }

    .golf-putter-buying-guide {
        grid-area: golf-putter-buying-guide;
    }

    .golf-bag-buying-guide {
        grid-area: golf-bag-buying-guide;
    }

    .golf-hybrid-buying-guide {
        grid-area: golf-hybrid-buying-guide;
    }

    .golf-shoes-buying-guide {
        grid-area: golf-shoes-buying-guide;
    }

    .golf-wedge-buying-guide {
        grid-area: golf-wedge-buying-guide;
    }

    .golf-irons-buying-guide {
        grid-area: golf-irons-buying-guide;
    }

    .complete-set-buying-guide {
        grid-area: complete-set-buying-guide;
    }

    .golf-apparel-buying-guide {
        grid-area: golf-apparel-buying-guide;
    }

    .container-golf-buying-guide-page h2 {
        text-align: center;
    }


    @media only screen and (max-width: 1200px) {
        .container-golf-buying-guide-page h2 {
            font-size: 1.3rem;
        }
    }

    @media only screen and (max-width: 690px) {
        .container-golf-buying-guide-page {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
            grid-gap: 2%;
            grid-auto-flow: row;
            grid-template-areas:
                "golf-driver-buying-guide"
                "golf-ball-buying-guide"
                "golf-putter-buying-guide"
                "golf-bag-buying-guide"
                "golf-hybrid-buying-guide"
                "golf-shoes-buying-guide"
                "golf-wedge-buying-guide"
                "golf-irons-buying-guide"
                "complete-set-buying-guide"
                "golf-apparel-buying-guide";
            margin: 4% 0 35% 0;
        }

        .golf-buying-guide-page-image {
            max-width: 100%;
        }

        .container-golf-buying-guide-page h2 {
            font-size: 2rem;
        }
    }


    /* END - top buying guide flex grid */


    /* START - Putter shaft table */
    .putter-shaft-table-container {
        text-align: center;
    }
    .putter-shaft-table {
        border:0px solid #b3adad;
        border-collapse:collapse;
        padding:5px;
        width: 70%;
        margin: auto;
    }
    .putter-shaft-table th {
        border:0px solid #b3adad;
        padding:5px 15px;
        background: #f0f0f0;
        color: #313030;
    }
    .putter-shaft-table td {
        border:0px solid #b3adad;
        text-align:center;
        padding:5px 10px;
        background: #ffffff;
        color: #313030;
    }
      /* END - Putter shaft table */

    /* START - golf gifts grid */

    .container-golf-gift-guide-page-single-row {
        display: grid;
        grid-gap: 4%;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr;
        grid-auto-flow: column;
        grid-template-areas:
            "golf-gift-1 golf-gift-2 golf-gift-3 golf-gift-4";
        margin: 1% 0 2% 0;
    }

    .golf-gift-1 {
        grid-area: golf-gift-1;
    }

    .golf-gift-2 {
        grid-area: golf-gift-2;
    }

    .golf-gift-3 {
        grid-area: golf-gift-3;
    }

    .golf-gift-4 {
        grid-area: golf-gift-4;
    }

    @media only screen and (max-width: 690px) {
        .container-golf-gift-guide-page-single-row {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: 1fr 1fr 1fr 1fr;
            grid-gap: 2%;
            grid-auto-flow: row;
            grid-template-areas:
                "golf-gift-1"
                "golf-gift-2"
                "golf-gift-3"
                "golf-gift-4";
            margin: 4% 0 20% 0;
        }
    }

    /* END - top buying guide flex grid */



    /* START - shaft flex table grid */
    .shaft-container {
        font-size: 1.2em;
        border: 1px black solid;
        text-align: center;
        margin: 20px auto;
        max-width: 80%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
        gap: .15em .15em;
        grid-auto-flow: row;
        grid-template-areas:
            "shaft-title1 shaft-title2 shaft-title3"
            "carrydistance1 swingspeed1 flex1"
            "carrydistance2 swingspeed2 flex2"
            "carrydistance3 swingspeed3 flex3"
            "carrydistance4 swingspeed4 flex4";
    }


    .shaft-container>div {
        background: #eee;
        padding: 1% 0;
    }

    .shaft-title1,
    .shaft-title2,
    .shaft-title3 {
        font-weight: bolder;
        font-size: 1.22em;
    }

    .shaft-title1 {
        grid-area: shaft-title1;
    }

    .shaft-title2 {
        grid-area: shaft-title2;
    }

    .shaft-title3 {
        grid-area: shaft-title3;
    }

    .carrydistance1 {
        grid-area: carrydistance1;
    }

    .carrydistance2 {
        grid-area: carrydistance2;
    }

    .carrydistance3 {
        grid-area: carrydistance3;
    }

    .carrydistance4 {
        grid-area: carrydistance4;
    }

    .swingspeed1 {
        grid-area: swingspeed1;
    }

    .swingspeed2 {
        grid-area: swingspeed2;
    }

    .swingspeed3 {
        grid-area: swingspeed3;
    }

    .swingspeed4 {
        grid-area: swingspeed4;
    }

    .flex1 {
        grid-area: flex1;
    }

    .flex2 {
        grid-area: flex2;
    }

    .flex3 {
        grid-area: flex3;
    }

    .flex4 {
        grid-area: flex4;
    }

    @media only screen and (max-width: 600px) {
        .shaft-container {
            max-width: 100%;
            width: 100%;
        }
    }

    /* END - shaft flex table grid */


    /* START - pre-owned flex grid */
    .pre-owned-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 5% 5%;
        grid-auto-flow: row;
        grid-template-areas:
            "Pre-Owned-Like-New Pre-Owned-Excellent Pre-Owned-Very-Good Pre-Owned-Value";
        justify-items: center;
        align-items: center;
        padding-bottom: 5%;
    }

    .Pre-Owned-Like-New {
        grid-area: Pre-Owned-Like-New;
    }

    .Pre-Owned-Excellent {
        grid-area: Pre-Owned-Excellent;
    }

    .Pre-Owned-Very-Good {
        grid-area: Pre-Owned-Very-Good;
    }

    .Pre-Owned-Value {
        grid-area: Pre-Owned-Value;
    }

    @media only screen and (max-width: 1000px) {
        .pre-owned-container {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            grid-template-areas:
                "Pre-Owned-Like-New Pre-Owned-Excellent"
                "Pre-Owned-Very-Good Pre-Owned-Value";
            padding-bottom: 7%;
        }
    }

    /* End - pre-owned flex grid */

    /* START - used-balls flex grid */
    .used-golf-ball-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 5% 5%;
        grid-auto-flow: row;
        grid-template-areas:
            "Mint-Used-Golf-Balls Near-Mint-Used-Golf-Balls Fair-Used-Golf-Balls";
        justify-items: center;
        align-items: center;
        padding-bottom: 5%;
    }

    .Mint-Used-Golf-Balls {
        grid-area: Mint-Used-Golf-Balls;
    }

    .Near-Mint-Used-Golf-Balls {
        grid-area: Near-Mint-Used-Golf-Balls;
    }

    .Fair-Used-Golf-Balls {
        grid-area: Fair-Used-Golf-Balls;
    }

    @media only screen and (max-width: 800px) {
        .used-golf-ball-container {
            gap: 0;
            grid-template-columns: 1fr;
            grid-template-rows: 1fr;
            grid-template-areas:
                "Mint-Used-Golf-Balls"
                "Near-Mint-Used-Golf-Balls"
                "Fair-Used-Golf-Balls";
            padding-bottom: 7%;
        }
    }

    /* End - used-balls flex grid */


    hr {
        margin: 5% auto;
    }

    .buyers-guide-display-mobile {
        display: none;
    }

    .buyers-guide-display-desktop {
        display: inline-block;
    }

    #buyers-guide-desktop-header-image {
        display: inline-block;
        padding-bottom: 4%;
    }

    #buyers-guide-mobile-header-image {
        display: none;
        padding-bottom: 4%;
    }

    .buyers-guide-left-padded-content-image {
        float: left;
        padding-right: 4%;
        max-width: 40%;
    }

    .golf-hybrid-generic-content-image {
        float: right;
        margin-left: 5%;
        margin-bottom: 1%;
        margin-top: 1%;
        max-width: 45%;
        border-radius: 12%;
    }

    .golf-hybrid-generic-content-image-left {
        float: left;
        margin-right: 5%;
        margin-bottom: 1%;
        margin-top: 1%;
        max-width: 45%;
        border-radius: 12%;
    }

    .buyers-guide-right-padded-content-image {
        float: right;
        padding-left: 4%;
        max-width: 40%
    }

    .golf-irons-generic-content-image {
        float: right;
        margin-left: 5%;
        margin-bottom: 1%;
        margin-top: 1%;
        max-width: 30%;
        border-radius: 12%;
    }

    .golf-irons-generic-content-image-left {
        float: left;
        margin-right: 5%;
        margin-bottom: 1%;
        margin-top: 1%;
        max-width: 30%;
        border-radius: 12%;
    }

    .driver-twist-face-image {
        margin-top: -2.5%;
        float: right;
        max-width: 28%;
    }

    .driver-twist-face-image-large {
        margin-top: -2.5%;
        float: right;
        max-width: 50%;
    }

    .driver-twist-face-image-padding-left-small {
        margin: auto;
        float: right;
        max-width: 20%;
        padding-left: 3%;
    }

    .buyers-guide-golf-ball-product-img {
        padding-top: 2rem;
    }

    .buyers-guide-product-image-right {
        float: right;
        max-width: 10%;
        margin-left: 4%;
        margin-top: -2%;
    }

    .buyers-guide-product-image-left {
        float: left;
        max-width: 10%;
        margin-right: 4%;
        margin-top: -2%;
    }

    .wedge-buyers-guide-product-image-right {
        float: right;
        max-width: 7%;
        margin-left: 4%;
        margin-top: 1%;
    }

    .wedge-buyers-guide-product-image-left {
        float: left;
        max-width: 7%;
        margin-right: 4%;
        margin-top: 1%;
    }


    .hybrid-buyers-guide-product-image-right {
        float: right;
        max-width: 5%;
        margin-left: 4%;
        margin-top: 4%;
    }

    .hybrid-buyers-guide-product-image-left {
        float: left;
        max-width: 5%;
        margin-right: 4%;
        margin-top: 1%;
    }

    .buyers-guide-product-heading {
        margin-top: 10%;
    }

    .buyers-guide-product-heading-top {
        margin-top: 5%;
    }

    .buyers-guide-golf-ball-product-h3 {
        text-align: center;
        margin: 5rem auto -1rem auto;
        font-size: 2.5rem;
    }

    .buyers-guide-golf-ball-product-h3 a {}

    .buyers-guide-product-text {
        margin-bottom: 10%;
    }

    .category__subcat-grid {
        padding: 0 5%;
    }

    @media only screen and (max-width: 1100px) {


        .buyers-guide-product-image-right {
            max-width: 15%;
        }

        .buyers-guide-product-image-left {
            max-width: 15%;
        }

        .wedge-buyers-guide-product-image-right,
        .hybrid-buyers-guide-product-image-right {
            max-width: 8%;
        }

        .wedge-buyers-guide-product-image-left,
        .hybrid-buyers-guide-product-image-left {
            max-width: 8%;
        }
    }

    @media only screen and (max-width: 900px) {
        .driver-twist-face-image {
            max-width: 360px;
        }

        .buyer-guide-table-of-content-nav {
            width: 100%;
        }

        .buyer-guide-table-of-content-nav li {
            padding: 0 10px;
            flex: 1 0 calc(50% - 20px);
        }
        .buyer-guide-table-of-content-nav a {
            padding: 1% 0;
            font-size: 1.2em;
            font-weight: 400;
        }
    }

    @media only screen and (max-width: 800px) {

        .no-show-mobile {
            display: none;
        }

        .buyers-guide-display-mobile {
            display: inline-block;
        }

        .buyers-guide-display-desktop {
            display: none;
        }

        #buyers-guide-desktop-header-image {
            display: none;
        }

        #buyers-guide-mobile-header-image {
            display: inline-block;
        }

        .buyers-guide-left-padded-content-image,
        .buyers-guide-right-padded-content-image {
            float: none;
            padding-right: 0;
            padding-left: 0;
            max-width: 100%;
        }

        .golf-hybrid-generic-content-image,
        .golf-hybrid-generic-content-image-left,
        .golf-irons-generic-content-image,
        .golf-irons-generic-content-image-left {
            float: none;
            margin-left: 0;
            margin-bottom: 1%;
            max-width: 90%;
        }


        .buyers-guide-product-image-right {
            max-width: 20%;
        }

        .buyers-guide-product-image-left {
            max-width: 20%;
        }

        .wedge-buyers-guide-product-image-right,
        .hybrid-buyers-guide-product-image-right {
            max-width: 11%;
        }

        .wedge-buyers-guide-product-image-left,
        .hybrid-buyers-guide-product-image-left {
            max-width: 11%;
        }
    }

    @media only screen and (max-width: 700px) {
        .buyer-guide-table-of-content-nav li {
            padding: 0 10px;
            flex: 1 0 calc(100% - 20px);
        }
    }

    @media only screen and (max-width: 600px) {

        .driver-twist-face-image,
        .driver-twist-face-image-large,
        .driver-twist-face-image-padding-left-small {
            margin-top: 0;
            float: none;
            max-width: 100%;
        }

        .buyers-guide-product-image-right,
        .buyers-guide-product-image-left,
        .hybrid-buyers-guide-product-image-right,
        .hybrid-buyers-guide-product-image-left,
        .wedge-buyers-guide-product-image-right,
        .wedge-buyers-guide-product-image-left {
            float: none;
            max-width: 100%;
            margin-top: 15%;
            margin-right: 0;
            margin-left: 0;
            padding: 0 5%;
        }


        .buyers-guide-product-heading,
        .buyers-guide-product-heading-top {
            margin-top: 3%;
        }

    }
	
	
	/* new 071425 for promo landing pages */
	.rbg-promo-grid-responsive-071425 .productGrid.productGrid--maxCol4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0;
    margin: 0;
}

.rbg-promo-grid-responsive-071425 .productGrid.productGrid--maxCol4 li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rbg-promo-grid-responsive-071425 .productGrid.productGrid--maxCol4 img {
    width: 100%;
    height: auto;
    display: block;
}

/* Large Mobile (2 rows x 2 columns) */
@media (max-width: 1023px) {
    .rbg-promo-grid-responsive-071425 .productGrid.productGrid--maxCol4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (4 rows x 1 column) */
@media (max-width: 600px) {
    .rbg-promo-grid-responsive-071425 .productGrid.productGrid--maxCol4 {
        grid-template-columns: 1fr;
    }
	
		/* END new 071425 for promo landing pages */
}
