/*==================================================
    Convert Case Tools
    Theme : Dark Luxury
    Author: HPTechHub
==================================================*/

/*==================================================
= CSS VARIABLES
==================================================*/
:root {
    /* Core Colors */
    --primary: #d4af37;
    --secondary: #a87900;
    --gold: #d4af37;
    --gold2: #b88918;
    
    /* Dark Theme */
    --dark: #080808;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --card: #111111;
    
    /* Text & Accents */
    --text: #f5f5f5;
    --muted: #bfbfbf;
    --border: #3b311b;
    
    /* Layout */
    --radius: 18px;
}

/*==================================================
= GLOBAL STYLES
==================================================*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--dark);
    color: var(--text);
    font-family: "Lexend", "DM Sans", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(1600px, 92%);
    margin-inline: auto;
}

.site-description{
	display: none;
}

/*==================================================
= HEADER & NAVIGATION
==================================================*/
.site-header,
.site-header.scrolled {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.site-branding {
    width: 20%;
}

.site-navigation ul.menu li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #a8997d;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background .3s, color .3s;
}

.site-navigation ul.menu li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

/*==================================================
= CONTACT FORM 7
==================================================*/
.cctcf7-wrapper {
    width: 100%;
    max-width: 100%;
}

.cctcf7-wrapper * {
    box-sizing: border-box;
}

/* Rows & Columns */
.cctcf7-row {
    display: flex;
    gap: 24px;
}

.cctcf7-col {
    flex: 1;
}

.cctcf7-group {
    margin-bottom: 24px;
}

/* Labels */
.cctcf7-wrapper label {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.cctcf7-wrapper label span {
    color: var(--primary);
}

/* Fields */
.cctcf7-wrapper input,
.cctcf7-wrapper select,
.cctcf7-wrapper textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--dark-2);
    color: var(--text);
    outline: none;
    font-size: 15px;
    transition: 0.3s;
}

.cctcf7-wrapper textarea {
    min-height: 180px;
    resize: vertical;
}

.cctcf7-wrapper input::placeholder,
.cctcf7-wrapper textarea::placeholder {
    color: var(--muted);
}

/* Select Styling */
.cctcf7-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 45px;
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6 6.5-6' stroke='%23d4af37' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Focus State */
.cctcf7-wrapper input:focus,
.cctcf7-wrapper select:focus,
.cctcf7-wrapper textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

/* Submit Button */
.cctcf7-submit-wrap {
    margin-top: 10px;
}

.cctcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 16px 34px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #111;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.35s;
}

.cctcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

/* CF7 Messages */
.wpcf7-not-valid-tip {
    margin-top: 8px;
    color: #ff6b6b;
    font-size: 13px;
}

.wpcf7-response-output {
    margin-top: 25px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--dark-3);
    color: #fff;
}

/*==================================================
= BLOG SECTION
==================================================*/
.cc-blog-section {
    padding: 90px 0;
}

.cc-blog-header {
    text-align: center;
    margin-bottom: 70px;
}

.cc-blog-header h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
	font-family: var(--tc-font-display);
}

.cc-blog-header p {
    font-size: 18px;
    color: #aaa;
}

.cc-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.cc-blog-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
}

.cc-blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.18);
}

.cc-blog-image {
    position: relative;
    overflow: hidden;
}

.cc-blog-image img {
    width: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.cc-blog-card:hover img {
    transform: scale(1.08);
}

.cc-category {
    position: absolute;
    left: 18px;
    top: 18px;
    background: linear-gradient(135deg, #d4af37, #9d6d00);
    color: #000;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 40px;
}

.cc-blog-content {
    padding: 28px;
}

.cc-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 14px;
    color: #999;
}

.cc-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cc-blog-content h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 18px;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: calc(1.4em * 3);
}

.cc-blog-content h2 a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.cc-blog-content h2 a:hover {
    color: var(--gold);
}

.cc-blog-content p {
    color: #bcbcbc;
    line-height: 1.8;
}

.cc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.cc-footer span {
    color: #888;
}

.cc-btn {
    background: linear-gradient(135deg, #d4af37, #a97900);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    color: #000;
    transition: 0.4s;
}

.cc-btn:hover {
    transform: translateY(-3px);
}

/* Pagination */
.cc-pagination {
    margin-top: 70px;
    text-align: center;
}

.cc-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 5px;
    border-radius: 50%;
    background: #141414;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid #2a2a2a;
}

.cc-pagination .current,
.cc-pagination a:hover {
    background: var(--gold);
    color: #000;
}

/*==================================================
= RESPONSIVE
==================================================*/

/* Tablet */
@media (max-width: 991px) {
    .cctcf7-row {
        gap: 18px;
    }
}

@media (max-width: 1024px) {
    .cc-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cc-blog-header h1 {
        font-size: 42px;
    }
}

/* Laptop */
@media (max-width: 1400px) {
    .cc-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1800px) {
    .container {
        max-width: 1700px;
    }
    .cc-blog-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .site-branding {
        width: 40%;
    }
    .cctcf7-row {
        flex-direction: column;
        gap: 20px;
    }
    .cctcf7-submit {
        width: 100%;
    }
    .cc-blog-grid {
        grid-template-columns: 1fr;
    }
    .cc-blog-image img {
        height: 230px;
    }
    .cc-blog-content {
        padding: 22px;
    }
    .cc-blog-content h2 {
        font-size: 24px;
    }
    .cc-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .cc-blog-header h1 {
        font-size: 34px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cc-blog-header h1 {
        font-size: 28px;
    }
    .cc-blog-content h2 {
        font-size: 22px;
    }
    .cc-blog-image img {
        height: 200px;
    }
}

/*==================================================
    Convert Case Tools
    Premium Single Blog Page
    Response 1
    Hero • Layout • Featured Image • Sidebar
    Dark Luxury Theme
==================================================*/


/*==================================================
=            SINGLE PAGE
==================================================*/

.cc-single{

    position:relative;
    overflow:hidden;

    padding:100px 0;

/*     background:
    radial-gradient(circle at top right,rgba(212,175,55,.08),transparent 30%),
    radial-gradient(circle at bottom left,rgba(212,175,55,.05),transparent 35%),
    #0a0a0a; */

}


/* Gold Glow */

.cc-single:before{

    content:"";

    position:absolute;

    left:-250px;
    top:-250px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(212,175,55,.08),
    transparent 70%);

    pointer-events:none;

}

.cc-single:after{

    content:"";

    position:absolute;

    right:-250px;
    bottom:-250px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(212,175,55,.05),
    transparent 70%);

}


/*==================================================
=            CONTAINER
==================================================*/

.cc-container{

    position:relative;

    width:min(1600px,92%);

    margin:auto;

    z-index:5;

}


/*==================================================
=            BREADCRUMB
==================================================*/

.cc-breadcrumb{

    display:flex;

    flex-wrap:wrap;

    align-items:center;

    gap:10px;

    margin-bottom:45px;

    font-size:15px;

}

.cc-breadcrumb a{

    color:#9f9f9f;

    text-decoration:none;

    transition:.35s;

}

.cc-breadcrumb a:hover{

    color:#d4af37;

}

.cc-breadcrumb span{

    color:#666;

}


/*==================================================
=            HERO
==================================================*/

.cc-post-header{

    position:relative;

    margin-bottom:60px;

}


/* Gold Line */

.cc-post-header:after{

    content:"";

    position:absolute;

    left:0;
    bottom:-35px;

    width:180px;
    height:3px;

    background:linear-gradient(
    90deg,
    #d4af37,
    transparent);

}


/*==================================================
=            CATEGORY
==================================================*/

.cc-category-wrap{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:25px;

}

.cc-category{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:9px 18px;

    border-radius:50px;

    text-decoration:none;

    font-size:13px;

    font-weight:700;

    color:#111;

    background:
    linear-gradient(
    135deg,
    #d4af37,
    #b88918);

    transition:.35s;

}

.cc-category:hover{

    transform:translateY(-3px);

    box-shadow:
    0 12px 30px
    rgba(212,175,55,.28);

}


/*==================================================
=            TITLE
==================================================*/

.cc-post-header h1{

    max-width:1100px;

    margin:0;

    color:#fff;

    font-size:62px;

    font-weight:700;

    line-height:1.2;

    letter-spacing:-1px;

}


/*==================================================
=            META
==================================================*/

.cc-post-meta{

    margin-top:40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

}


/*==================================================
=            AUTHOR
==================================================*/

.cc-author{

    display:flex;

    align-items:center;

    gap:18px;

}

.cc-author img{

    width:70px;
    height:70px;

    border-radius:50%;

    border:3px solid #d4af37;

    transition:.35s;

}

.cc-author:hover img{

    transform:rotate(5deg);

}

.cc-author strong{

    display:block;

    color:#fff;

    font-size:17px;

}

.cc-author span{

    display:block;

    margin-top:6px;

    color:#9d9d9d;

}


/*==================================================
=            META RIGHT
==================================================*/

.cc-meta-right{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.cc-meta-right span{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:10px 20px;

    border-radius:50px;

    color:#d4af37;

    border:1px solid rgba(212,175,55,.2);

    background:
    rgba(212,175,55,.05);

}


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

.cc-layout{

    display:grid;

    grid-template-columns:minmax(0,1fr) 360px;

    gap:55px;

    align-items:start;

}


/*==================================================
=            CONTENT
==================================================*/

.cc-content{

    min-width:0;

}


/*==================================================
=            FEATURED IMAGE
==================================================*/

.cc-featured-image{

    position:relative;

    overflow:hidden;

    margin-bottom:45px;

    border-radius:26px;

    border:1px solid rgba(212,175,55,.12);

    background:#111;

    box-shadow:

    0 30px 60px rgba(0,0,0,.45);

}


/* Gold Border */

.cc-featured-image:before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:26px;

    border:1px solid rgba(212,175,55,.15);

    pointer-events:none;

}

.cc-featured-image img{

    width:100%;

    height:auto;

    transition:1s;

}

.cc-featured-image:hover img{

    transform:scale(1.08);

}


/* Gold Overlay */

.cc-featured-image:after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    to top,

    rgba(0,0,0,.35),

    transparent);

}


/*==================================================
=            CONTENT BOX
==================================================*/

.cc-post-content{

    padding:50px;

    border-radius:28px;

    background:

    linear-gradient(

    145deg,

    #111111,

    #0d0d0d);

    border:1px solid rgba(212,175,55,.10);

    box-shadow:

    0 25px 70px rgba(0,0,0,.45);

}


/*==================================================
=            SIDEBAR
==================================================*/

.cc-sidebar{

    position:sticky;

    top:130px;

}


/*==================================================
=            SIDEBAR WIDGET
==================================================*/

.cc-sidebar .widget{

    margin-bottom:30px;

    padding:30px;

    border-radius:24px;

    background:

    linear-gradient(

    160deg,

    #121212,

    #0d0d0d);

    border:1px solid rgba(212,175,55,.10);

    transition:.35s;

}

.cc-sidebar .widget:hover{

    transform:translateY(-5px);

    border-color:

    rgba(212,175,55,.25);

    box-shadow:

    0 20px 45px rgba(0,0,0,.40);

}

.cc-sidebar .widget-title{

    position:relative;

    margin-bottom:28px;

    padding-bottom:14px;

    color:#fff;

    font-size:22px;

    font-weight:700;

}

.cc-sidebar .widget-title:after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:80px;
    height:3px;

    border-radius:50px;

    background:

    linear-gradient(

    90deg,

    #d4af37,

    transparent);

}


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

.cc-sidebar ul{

    margin:0;

    padding:0;

    list-style:none;

}

.cc-sidebar ul li{

    margin-bottom:14px;

}

.cc-sidebar ul li:last-child{

    margin-bottom:0;

}

.cc-sidebar ul li a{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:12px 0;

    color:#cfcfcf;

    text-decoration:none;

    transition:.35s;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.cc-sidebar ul li a:hover{

    color:#d4af37;

    padding-left:10px;

}


/*==================================================
=            SEARCH
==================================================*/

.cc-sidebar input[type="search"],
.cc-sidebar input[type="text"],
.cc-sidebar select{

    width:100%;

    height:55px;

    padding:0 20px;

    color:#fff;

    border-radius:14px;

    background:#0f0f0f;

    border:1px solid rgba(212,175,55,.12);

}

.cc-sidebar input:focus,
.cc-sidebar select:focus{

    outline:none;

    border-color:#d4af37;

    box-shadow:

    0 0 0 4px rgba(212,175,55,.08);

}


/*==================================================
=            BUTTON
==================================================*/

.cc-sidebar button,
.cc-sidebar input[type="submit"]{

    width:100%;

    margin-top:15px;

    height:56px;

    border:none;

    cursor:pointer;

    border-radius:14px;

    color:#111;

    font-weight:700;

    background:

    linear-gradient(

    135deg,

    #d4af37,

    #b88918);

    transition:.35s;

}

.cc-sidebar button:hover,
.cc-sidebar input[type="submit"]:hover{

    transform:translateY(-3px);

    box-shadow:

    0 15px 35px rgba(212,175,55,.30);

}


/*==================================================
=            RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .cc-layout{

        grid-template-columns:1fr 320px;

    }

}

@media(max-width:1024px){

    .cc-layout{

        grid-template-columns:1fr;

    }

    .cc-sidebar{

        position:relative;

        top:0;

    }

}

@media(max-width:768px){

    .cc-single{

        padding:70px 0;

    }

    .cc-post-header h1{

        font-size:42px;

    }

    .cc-post-meta{

        flex-direction:column;

        align-items:flex-start;

    }

    .cc-post-content{

        padding:35px;

    }

}

@media(max-width:576px){

    .cc-post-header h1{

        font-size:34px;

    }

    .cc-post-content{

        padding:28px;

    }

}

@media(max-width:420px){

    .cc-post-header h1{

        font-size:28px;

    }

}

@media(min-width:1800px){

    .cc-container{

        max-width:1700px;

    }

    .cc-post-header h1{

        font-size:72px;

    }

    .cc-layout{

        grid-template-columns:minmax(0,1fr) 420px;

        gap:70px;

    }

}

/*==================================================
    Convert Case Tools
    Premium Single Blog Page
    Response 2
    Article Content • Tables • Lists • Quote
    Share • Tags • Author Box
==================================================*/


/*==================================================
=            ARTICLE CONTENT
==================================================*/

.cc-post-content{

    position:relative;

    color:#d9d9d9;

    font-size:18px;

    line-height:2;

    word-break:break-word;

}

.cc-post-content > *:first-child{

    margin-top:0;

}

.cc-post-content > *:last-child{

    margin-bottom:0;

}


/*==================================================
=            HEADINGS
==================================================*/

.cc-post-content h1,
.cc-post-content h2,
.cc-post-content h3,
.cc-post-content h4,
.cc-post-content h5,
.cc-post-content h6{

    position:relative;

    margin:30px 0 25px;

    color:#ffffff;

    font-weight:700;

    line-height:1.3;

    letter-spacing:-.5px;

}

.cc-post-content h2{

    padding-bottom:15px;

    font-size:42px;

}

.cc-post-content h2:after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:90px;
    height:3px;

    border-radius:100px;

    background:linear-gradient(
        90deg,
        #d4af37,
        transparent
    );

}

.cc-post-content h3{

    font-size:34px;

}

.cc-post-content h4{

    font-size:28px;

}

.cc-post-content h5{

    font-size:22px;

}

.cc-post-content h6{

    font-size:18px;

}


/*==================================================
=            PARAGRAPH
==================================================*/

.cc-post-content p{

    margin:0 0 10px;

    color:#d0d0d0;

    line-height:2;

    font-size:18px;

}


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

.cc-post-content a{

    color:#d4af37;

    text-decoration:none;

    transition:.35s;

    border-bottom:1px solid transparent;

}

.cc-post-content a:hover{

    color:#ffffff;

    border-color:#d4af37;

}


/*==================================================
=            STRONG
==================================================*/

.cc-post-content strong{

    color:#ffffff;

    font-weight:700;

}


/*==================================================
=            LIST
==================================================*/

.cc-post-content ul,
.cc-post-content ol{

    margin:35px 0 35px 28px;

}

.cc-post-content li{

    margin-bottom:15px;

    color:#d5d5d5;

    line-height:1;

}

.cc-post-content ul li::marker{

    color:#d4af37;

}

.cc-post-content ol li::marker{

    color:#d4af37;

    font-weight:700;

}


/*==================================================
=            BLOCKQUOTE
==================================================*/

.cc-post-content blockquote{

    position:relative;

    overflow:hidden;

    margin:60px 0;

    padding:45px 50px 45px 80px;

    border-radius:24px;

    border-left:5px solid #d4af37;

    background:

    linear-gradient(
        135deg,
        rgba(212,175,55,.08),
        rgba(255,255,255,.02)
    );

}

.cc-post-content blockquote:before{

    content:"❝";

    position:absolute;

    left:25px;
    top:18px;

    font-size:90px;

    color:#d4af37;

    opacity:.25;

}

.cc-post-content blockquote p{

    margin:0;

    color:#ffffff;

    font-size:24px;

    line-height:1.8;

    font-style:italic;

}

.cc-post-content blockquote cite{

    display:block;

    margin-top:20px;

    color:#d4af37;

    font-style:normal;

    font-weight:600;

}


/*==================================================
=            TABLE
==================================================*/

.cc-post-content table{

    width:100%;

    margin:60px 0;

    border-collapse:collapse;

    overflow:hidden;

    border-radius:20px;

    border:1px solid rgba(212,175,55,.12);

}

.cc-post-content table thead{

    background:

    linear-gradient(
        135deg,
        #d4af37,
        #b88918
    );

}

.cc-post-content table th{

    padding:18px 22px;

    color:#111;

    font-size:16px;

    text-align:left;

}

.cc-post-content table td{

    padding:18px 22px;

    color:#d8d8d8;

    background:#111111;

    border-top:1px solid rgba(212,175,55,.08);

}

.cc-post-content table tr:hover td{

    background:#181818;

}


/*==================================================
=            IMAGE
==================================================*/

.cc-post-content img{

    display:block;

    max-width:100%;

    margin:55px auto;

    border-radius:24px;

    border:1px solid rgba(212,175,55,.08);

}


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

.cc-post-content pre{

    overflow:auto;

    margin:60px 0;

    padding:30px;

    border-radius:20px;

    background:#0c0c0c;

    border:1px solid rgba(212,175,55,.10);

}

.cc-post-content pre code{

    color:#ffffff;

    font-size:15px;

    line-height:1.8;

}

.cc-post-content p code,
.cc-post-content li code{

    padding:4px 8px;

    border-radius:8px;

    color:#d4af37;

    background:#181818;

}


/*==================================================
=            TAGS
==================================================*/

.cc-tags{

    display:flex;

    flex-wrap:wrap;

    align-items:center;

    gap:14px;

    margin-top:70px;

}

.cc-tags strong{

    color:#ffffff;

}

.cc-tags a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:46px;

    padding:0 22px;

    border-radius:100px;

    background:#111111;

    border:1px solid rgba(212,175,55,.10);

    color:#d5d5d5;

    transition:.35s;

}

.cc-tags a:hover{

    background:linear-gradient(
        135deg,
        #d4af37,
        #b88918
    );

    color:#111111;

}


/*==================================================
=            SHARE
==================================================*/

.cc-share{

    margin-top:70px;

    padding:40px;

    border-radius:24px;

    border:1px solid rgba(212,175,55,.10);

    background:

    linear-gradient(
        160deg,
        #111111,
        #0d0d0d
    );

}

.cc-share h3{

    margin-bottom:25px;

    color:#ffffff;

}

.cc-share{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

}

.cc-share a{

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:160px;

    height:52px;

    border-radius:100px;

    color:#d4af37;

    border:1px solid rgba(212,175,55,.12);

    background:rgba(212,175,55,.04);

    transition:.35s;

}

.cc-share a:hover{

    color:#111;

    background:linear-gradient(
        135deg,
        #d4af37,
        #b88918
    );

}


/*==================================================
=            AUTHOR BOX
==================================================*/

.cc-author-box{

    display:flex;

    align-items:center;

    gap:35px;

    margin-top:90px;

    padding:45px;

    border-radius:28px;

    border:1px solid rgba(212,175,55,.10);

    background:

    linear-gradient(
        160deg,
        #111111,
        #0d0d0d
    );

}

.cc-author-avatar img{

    width:110px;

    height:110px;

    border-radius:50%;

    border:4px solid #d4af37;

}

.cc-author-box h3{

    margin:0 0 15px;

    color:#ffffff;

    font-size:30px;

}

.cc-author-box p{

    margin:0;

    color:#cfcfcf;

    line-height:1.9;

}


/*==================================================
=            POST NAVIGATION
==================================================*/

.cc-post-navigation{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:80px;

}

.cc-prev,
.cc-next{

    padding:35px;

    border-radius:24px;

    border:1px solid rgba(212,175,55,.10);

    background:

    linear-gradient(
        145deg,
        #111111,
        #0c0c0c
    );

    transition:.35s;

}

.cc-next{

    text-align:right;

}

.cc-prev:hover,
.cc-next:hover{

    transform:translateY(-5px);

    border-color:rgba(212,175,55,.30);

    box-shadow:0 20px 40px rgba(212,175,55,.08);

}

.cc-post-navigation a{

    color:#ffffff;

    font-size:18px;

    font-weight:600;

    text-decoration:none;

}

.cc-post-navigation a:hover{

    color:#d4af37;

}


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

@media(max-width:768px){

    .cc-post-content{

        font-size:16px;

    }

    .cc-post-content h2{

        font-size:30px;

    }

    .cc-post-content h3{

        font-size:26px;

    }

    .cc-post-content blockquote{

        padding:35px;

    }

    .cc-post-content blockquote:before{

        display:none;

    }

    .cc-author-box{

        flex-direction:column;

        text-align:center;

    }

    .cc-post-navigation{

        grid-template-columns:1fr;

    }

    .cc-next{

        text-align:left;

    }

}

@media(max-width:480px){

    .cc-share{

        padding:25px;

    }

    .cc-share a{

        width:100%;

    }

    .cc-post-content table{

        display:block;

        overflow:auto;

        white-space:nowrap;

    }

}
/*==================================================
    Convert Case Tools
    Premium Single Blog Page
    Response 3
    Related Posts • Comments • Sidebar Widgets
    WordPress Elements • Responsive
==================================================*/


/*==================================================
=            RELATED POSTS
==================================================*/

.cc-related{

    margin-top:110px;

}

.cc-related-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:45px;

}

.cc-related-header h2{

    position:relative;

    margin:0;

    padding-bottom:18px;

    color:#ffffff;

    font-size:42px;

    font-weight:700;

}

.cc-related-header h2:after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:90px;
    height:3px;

    border-radius:100px;

    background:
    linear-gradient(
        90deg,
        #d4af37,
        transparent
    );

}


/*==================================================
=            RELATED GRID
==================================================*/

.cc-related-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.cc-related-card{

    overflow:hidden;

    border-radius:24px;

    background:
    linear-gradient(
        160deg,
        #111111,
        #0c0c0c
    );

    border:1px solid rgba(212,175,55,.12);

    transition:.4s;

}

.cc-related-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.35);

    box-shadow:
    0 25px 55px rgba(212,175,55,.12);

}
.cc-related-card h3 {
	padding: 0 10px;
}
.cc-related-card h3 a{
	color: #d4af37;
	text-decoration: none;
}
.cc-related-image{

    overflow:hidden;

}

.cc-related-image img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:1s;

}

.cc-related-card:hover img{

    transform:scale(1.08);

}

.cc-related-content{

    padding:28px;

}

.cc-related-content h3{

    margin:0 0 18px;

    font-size:24px;

    line-height:1.5;

}

.cc-related-content h3 a{

    color:#ffffff;

    text-decoration:none;

    transition:.3s;

}

.cc-related-content h3 a:hover{

    color:#d4af37;

}

.cc-related-meta{

    display:flex;

    justify-content:space-between;

    margin-bottom:18px;

    color:#9b9b9b;

    font-size:14px;

}

.cc-related-content p{

    margin:0;

    color:#c8c8c8;

    line-height:1.8;

}


/*==================================================
=            SIDEBAR WIDGETS
==================================================*/

.cc-sidebar .widget{

    overflow:hidden;

    position:relative;

}

.cc-sidebar .widget:before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:2px;

    background:
    linear-gradient(
        90deg,
        #d4af37,
        transparent
    );

}

.cc-sidebar .widget ul li{

    transition:.35s;

}

.cc-sidebar .widget ul li:hover{

    transform:translateX(8px);

}


/*==================================================
=            SEARCH FORM
==================================================*/

.search-form{

    display:flex;

    gap:10px;

}

.search-form input[type="search"]{

    flex:1;

}

.search-form button{

    width:58px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    color:#111;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #b88918
    );

}


/*==================================================
=            COMMENTS AREA
==================================================*/

.comments-area{

    margin-top:110px;

    padding:50px;

    border-radius:28px;

    background:
    linear-gradient(
        160deg,
        #111111,
        #0c0c0c
    );

    border:1px solid rgba(212,175,55,.12);

}

.comments-title{

    position:relative;

    margin:0 0 45px;

    padding-bottom:18px;

    color:#ffffff;

    font-size:36px;

}

.comments-title:after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:90px;
    height:3px;

    background:
    linear-gradient(
        90deg,
        #d4af37,
        transparent
    );

}


/*==================================================
=            COMMENT LIST
==================================================*/

.comment-list{

    margin:0;

    padding:0;

    list-style:none;

}

.comment{

    margin-bottom:35px;

}

.comment-body{

    display:flex;

    gap:25px;

    padding:35px;

    border-radius:22px;

    background:#101010;

    border:1px solid rgba(212,175,55,.08);

    transition:.35s;

}

.comment-body:hover{

    border-color:rgba(212,175,55,.22);

    transform:translateY(-3px);

}

.comment-author img{

    width:70px;

    height:70px;

    border-radius:50%;

    border:3px solid #d4af37;

}

.comment-author .fn{

    color:#ffffff;

    font-size:18px;

    font-weight:700;

    text-decoration:none;

}

.comment-metadata{

    margin-top:6px;

}

.comment-metadata a{

    color:#9c9c9c;

    text-decoration:none;

}

.comment-content{

    margin-top:18px;

}

.comment-content p{

    margin:0;

    color:#d4d4d4;

    line-height:1.9;

}

.reply{

    margin-top:20px;

}

.reply a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:42px;

    padding:0 22px;

    border-radius:100px;

    background:rgba(212,175,55,.08);

    color:#d4af37;

    text-decoration:none;

    transition:.35s;

}

.reply a:hover{

    color:#111;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #b88918
    );

}


/*==================================================
=            COMMENT FORM
==================================================*/

.comment-respond{

    margin-top:70px;

}

.comment-reply-title{

    margin-bottom:30px;

    color:#ffffff;

    font-size:34px;

}

.comment-form{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.comment-form p{

    margin:0;

}

.comment-form .comment-form-comment,

.comment-form .form-submit{

    grid-column:1/-1;

}

.comment-form input,

.comment-form textarea{

    width:100%;

    padding:16px 20px;

    border-radius:16px;

    color:#ffffff;

    border:1px solid rgba(212,175,55,.12);

    background:#0e0e0e;

    transition:.35s;

}

.comment-form textarea{

    min-height:220px;

    resize:vertical;

}

.comment-form input:focus,

.comment-form textarea:focus{

    outline:none;

    border-color:#d4af37;

    box-shadow:
    0 0 0 5px rgba(212,175,55,.08);

}

.comment-form input[type="submit"]{

    width:auto;

    padding:18px 42px;

    cursor:pointer;

    border:none;

    color:#111;

    font-weight:700;

    border-radius:100px;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #b88918
    );

    transition:.35s;

}

.comment-form input[type="submit"]:hover{

    transform:translateY(-4px);

    box-shadow:
    0 18px 40px rgba(212,175,55,.25);

}


/*==================================================
=            WORDPRESS ELEMENTS
==================================================*/

.alignleft{

    float:left;

    margin:0 30px 25px 0;

}

.alignright{

    float:right;

    margin:0 0 25px 30px;

}

.aligncenter{

    display:block;

    margin:40px auto;

}

.wp-caption{

    max-width:100%;

}

.wp-caption-text{

    margin-top:14px;

    color:#9d9d9d;

    text-align:center;

}

.page-links{

    display:flex;

    gap:12px;

    margin-top:45px;

}

.page-links a,

.page-links > span{

    display:flex;

    align-items:center;

    justify-content:center;

    width:48px;

    height:48px;

    border-radius:50%;

    color:#ffffff;

    text-decoration:none;

    background:#111111;

    border:1px solid rgba(212,175,55,.12);

}

.page-links > span{

    color:#111;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #b88918
    );

}


/*==================================================
=            RESPONSIVE
==================================================*/

@media(max-width:1400px){

    .cc-related-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:1024px){

    .comments-area{

        padding:35px;

    }

}

@media(max-width:768px){

    .cc-related{

        margin-top:80px;

    }

    .cc-related-header{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;

    }

    .cc-related-grid{

        grid-template-columns:1fr;

    }

    .comment-body{

        flex-direction:column;

    }

    .comment-form{

        grid-template-columns:1fr;

    }

    .comments-area{

        padding:28px;

    }

}

@media(max-width:576px){

    .comments-title{

        font-size:30px;

    }

    .comment-reply-title{

        font-size:28px;

    }

    .comment-form input[type="submit"]{

        width:100%;

    }

}

@media(max-width:480px){

    .alignleft,

    .alignright{

        float:none;

        margin:30px auto;

        display:block;

    }

    .cc-related-content{

        padding:22px;

    }

}

@media(min-width:1800px){

    .cc-related-grid{

        grid-template-columns:repeat(4,1fr);

    }

    .cc-related-image img{

        height:280px;

    }

    .comments-area{

        padding:60px;

    }

}

@media(min-width:2200px){

    .cc-container{

        max-width:1900px;

    }

}