/**
 * Gutenberg Block Styles for Frontend
 * Comprehensive styling for all WordPress blocks
 */

/* ============================================
   GLOBAL CONTENT STYLES
   ============================================ */
.entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: #1a1a1a;
}

[data-theme="dark"] .entry-content {
    color: #e0e0e0;
}

.entry-content>*+* {
    margin-top: 1.5em;
}

/* ============================================
   TYPOGRAPHY BLOCKS
   ============================================ */

/* Paragraphs */
.entry-content p {
    margin-bottom: 1.5em;
    font-size: 18px;
    line-height: 1.8;
}

.entry-content p.has-drop-cap:not(:focus)::first-letter {
    float: left;
    font-size: 4em;
    line-height: 0.68;
    font-weight: 700;
    margin: 0.05em 0.1em 0 0;
    text-transform: uppercase;
    color: #2196F3;
}

/* Headings */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-top: 2em;
    margin-bottom: 0.8em;
    letter-spacing: -0.02em;
}

[data-theme="dark"] .entry-content h1,
[data-theme="dark"] .entry-content h2,
[data-theme="dark"] .entry-content h3,
[data-theme="dark"] .entry-content h4,
[data-theme="dark"] .entry-content h5,
[data-theme="dark"] .entry-content h6 {
    color: #ffffff;
}

.entry-content h1 {
    font-size: 2.5em;
}

.entry-content h2 {
    font-size: 2em;
}

.entry-content h3 {
    font-size: 1.75em;
}

.entry-content h4 {
    font-size: 1.5em;
}

.entry-content h5 {
    font-size: 1.25em;
}

.entry-content h6 {
    font-size: 1.1em;
}

/* Stretchy Heading */
.entry-content .wp-block-heading.has-text-align-center {
    text-align: center;
}

/* ============================================
   LIST BLOCKS
   ============================================ */
.entry-content ul,
.entry-content ol {
    margin: 1.5em 0;
    padding-left: 2em;
}

.entry-content ul li,
.entry-content ol li {
    margin-bottom: 0.5em;
    line-height: 1.8;
}

/* Unordered Lists */
.entry-content ul {
    list-style: none;
    list-style-type: none;
}

.entry-content ul>li {
    list-style: none;
    /* Ensure li has no marker */
}

.entry-content ul>li::before {
    content: '●';
    color: #2196F3;
    font-weight: 700;
    display: inline-block;
    width: 1em;
    margin-left: -1.5em;
    margin-right: 0.5em;
}

/* Ordered Lists */
.entry-content ol {
    counter-reset: item;
    list-style-type: none;
}

.entry-content ol li {
    counter-increment: item;
    position: relative;
}

.entry-content ol li::before {
    content: counter(item);
    position: absolute;
    left: -2em;
    top: 0;
    width: 1.5em;
    height: 1.5em;
    background: #2196F3;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85em;
}

/* Checkmark List Style */
.entry-content ul.is-style-checkmark {
    list-style: none;
}

.entry-content ul.is-style-checkmark li::before {
    content: '✓';
    color: #4CAF50;
    font-size: 1.2em;
    font-weight: 700;
}

/* Arrow List Style */
.entry-content ul.is-style-arrow li::before {
    content: '→';
    color: #FF5722;
}

/* Nested Lists */
.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* Dark Mode Lists */
[data-theme="dark"] .entry-content ul li::before {
    color: #42A5F5;
}

[data-theme="dark"] .entry-content ol li::before {
    background: #42A5F5;
}

/* ============================================
   QUOTE BLOCKS
   ============================================ */
.entry-content blockquote,
.entry-content .wp-block-quote {
    margin: 2em 0;
    padding: 1.5em 2em;
    background: #f8f9fa;
    border-left: 5px solid #2196F3;
    border-radius: 0 8px 8px 0;
    position: relative;
    font-style: italic;
}

.entry-content blockquote p,
.entry-content .wp-block-quote p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.entry-content blockquote cite,
.entry-content .wp-block-quote cite {
    display: block;
    margin-top: 1em;
    font-style: normal;
    font-size: 0.9em;
    color: #666666;
}

.entry-content blockquote cite::before,
.entry-content .wp-block-quote cite::before {
    content: '— ';
}

/* Fancy Quote Style */
.entry-content .wp-block-quote.is-style-fancy-quote {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-left: none;
    padding: 2em;
    position: relative;
}

.entry-content .wp-block-quote.is-style-fancy-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5em;
    color: #2196F3;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Bordered Quote Style */
.entry-content .wp-block-quote.is-style-bordered-quote {
    border: 2px solid #2196F3;
    border-left-width: 5px;
}

/* Dark Mode Quotes */
[data-theme="dark"] .entry-content blockquote,
[data-theme="dark"] .entry-content .wp-block-quote {
    background: #2a2a2a;
    border-left-color: #42A5F5;
}

[data-theme="dark"] .entry-content blockquote p,
[data-theme="dark"] .entry-content .wp-block-quote p {
    color: #e0e0e0;
}

[data-theme="dark"] .entry-content blockquote cite,
[data-theme="dark"] .entry-content .wp-block-quote cite {
    color: #b0b0b0;
}

/* ============================================
   PULLQUOTE BLOCK
   ============================================ */
.entry-content .wp-block-pullquote {
    padding: 3em 2em;
    text-align: center;
    border-top: 4px solid #2196F3;
    border-bottom: 4px solid #2196F3;
    background: #f8f9fa;
    margin: 3em 0;
}

.entry-content .wp-block-pullquote p {
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0;
}

.entry-content .wp-block-pullquote cite {
    margin-top: 1em;
    font-size: 0.9em;
    color: #666666;
}

[data-theme="dark"] .entry-content .wp-block-pullquote {
    background: #2a2a2a;
    border-color: #42A5F5;
}

[data-theme="dark"] .entry-content .wp-block-pullquote p {
    color: #ffffff;
}

/* ============================================
   CODE BLOCKS
   ============================================ */
.entry-content code {
    background: #f5f5f5;
    color: #e83e8c;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
    font-size: 0.9em;
}

.entry-content pre {
    background: #1e1e1e;
    color: #e0e0e0;
    padding: 1.5em;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2em 0;
    border: 1px solid #404040;
}

.entry-content pre code {
    background: none;
    color: inherit;
    padding: 0;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Code Block with Syntax Highlighting */
.entry-content .wp-block-code {
    position: relative;
}

.entry-content .wp-block-code::before {
    content: attr(data-language);
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2196F3;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
}

/* Dark Mode Code */
[data-theme="dark"] .entry-content code {
    background: #2a2a2a;
    color: #FF6BA8;
}

/* ============================================
   PREFORMATTED TEXT
   ============================================ */
.entry-content .wp-block-preformatted {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 1.5em;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9em;
    line-height: 1.6;
    overflow-x: auto;
}

[data-theme="dark"] .entry-content .wp-block-preformatted {
    background: #2a2a2a;
    border-color: #404040;
    color: #e0e0e0;
}

/* ============================================
   TABLE BLOCK
   ============================================ */
.entry-content table,
.entry-content .wp-block-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    border-radius: 8px;
    overflow: hidden;
    /* Removed box-shadow from table to avoid double shadow with wrapper */
}

.entry-content table th,
.entry-content .wp-block-table th {
    background: #f8f9fa;
    color: #1a1a1a;
    font-weight: 600;
    padding: 16px;
    text-align: left;
    border-bottom: 2px solid #e0e0e0;
}

.entry-content table td,
.entry-content .wp-block-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e0e0e0;
}

.entry-content table tbody tr:nth-child(even),
.entry-content .wp-block-table tbody tr:nth-child(even) {
    background: transparent;
}

.entry-content table tbody tr:hover,
.entry-content .wp-block-table tbody tr:hover {
    background: #f8f9fa;
}

/* Striped Table Style */
.entry-content .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background: #ffffff;
}

.entry-content .wp-block-table.is-style-stripes tbody tr:nth-child(even) {
    background: #f8f9fa;
}

/* Dark Mode Table */
[data-theme="dark"] .entry-content table th,
[data-theme="dark"] .entry-content .wp-block-table th {
    background: #2a2a2a;
    color: #ffffff;
}

[data-theme="dark"] .entry-content table td,
[data-theme="dark"] .entry-content .wp-block-table td {
    border-bottom-color: #404040;
}

[data-theme="dark"] .entry-content table tbody tr:nth-child(even),
[data-theme="dark"] .entry-content .wp-block-table tbody tr:nth-child(even) {
    background: transparent;
}

[data-theme="dark"] .entry-content table tbody tr:hover,
[data-theme="dark"] .entry-content .wp-block-table tbody tr:hover {
    background: #333333;
}

/* ============================================
   DETAILS/ACCORDION BLOCK
   ============================================ */
.entry-content details,
.entry-content .wp-block-details {
    margin: 2em 0;
    padding: 1.5em;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.entry-content details summary,
.entry-content .wp-block-details summary {
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    padding: 0.5em;
    margin: -0.5em;
    border-radius: 6px;
    transition: background 0.2s;
    user-select: none;
}

.entry-content details summary:hover,
.entry-content .wp-block-details summary:hover {
    background: #e0e0e0;
}

.entry-content details[open] summary,
.entry-content .wp-block-details[open] summary {
    margin-bottom: 1em;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1em;
}

[data-theme="dark"] .entry-content details,
[data-theme="dark"] .entry-content .wp-block-details {
    background: #2a2a2a;
    border-color: #404040;
}

[data-theme="dark"] .entry-content details summary:hover,
[data-theme="dark"] .entry-content .wp-block-details summary:hover {
    background: #333333;
}

/* ============================================
   VERSE BLOCK
   ============================================ */
.entry-content .wp-block-verse {
    font-family: Georgia, serif;
    font-style: italic;
    padding: 1.5em;
    background: #f8f9fa;
    border-left: 4px solid #9C27B0;
    border-radius: 0 8px 8px 0;
    white-space: pre-wrap;
}

[data-theme="dark"] .entry-content .wp-block-verse {
    background: #2a2a2a;
    border-left-color: #BA68C8;
}

/* ============================================
   IMAGE BLOCKS
   ============================================ */
.entry-content img,
.entry-content .wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.entry-content figure.wp-block-image {
    margin: 2em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    width: 100% !important;
    /* Ensure container is full width so it can center contents */
}

.entry-content figure.wp-block-image figcaption {
    margin-top: 0.8em;
    text-align: center;
    font-size: 0.9em;
    color: #666666;
    font-style: italic;
    display: block;
    /* Force block to behave like normal text */
    width: 100%;
    /* Take full width of parent */
    max-width: 800px;
    /* Optional: constrain caption width slightly for readability on huge screens */
    box-sizing: border-box;
}

/* Rounded Image Style */
.entry-content .wp-block-image.is-style-rounded img {
    border-radius: 16px;
}

/* Shadow Image Style */
.entry-content .wp-block-image.is-style-shadow img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Full Width Images */
.entry-content .wp-block-image.alignfull img,
.entry-content .wp-block-image.alignwide img {
    width: 100%;
}

/* Dark Mode Image Caption */
[data-theme="dark"] .entry-content figure.wp-block-image figcaption {
    color: #b0b0b0;
}

/* ============================================
   GALLERY BLOCK
   ============================================ */
.entry-content .wp-block-gallery {
    margin: 2em 0;
}

.entry-content .wp-block-gallery .blocks-gallery-grid,
.entry-content .wp-block-gallery .wp-block-gallery__inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.entry-content .wp-block-gallery .blocks-gallery-item,
.entry-content .wp-block-gallery .wp-block-image {
    margin: 0;
}

.entry-content .wp-block-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.entry-content .wp-block-gallery img:hover {
    transform: scale(1.05);
}

/* ============================================
   COVER BLOCK
   ============================================ */
.entry-content .wp-block-cover {
    margin: 3em 0;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.entry-content .wp-block-cover .wp-block-cover__inner-container {
    padding: 3em;
    color: #ffffff;
}

.entry-content .wp-block-cover h2,
.entry-content .wp-block-cover h3 {
    color: #ffffff;
    margin-top: 0;
}

/* ============================================
   MEDIA & TEXT BLOCK
   ============================================ */
.entry-content .wp-block-media-text {
    margin: 3em 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3em;
    align-items: center;
}

.entry-content .wp-block-media-text.has-media-on-the-right {
    grid-template-columns: 1fr 1fr;
}

.entry-content .wp-block-media-text__media img {
    border-radius: 8px;
}

/* ============================================
   BUTTON BLOCKS
   ============================================ */
.entry-content .wp-block-button {
    margin: 1.5em 0;
}

.entry-content .wp-block-button .wp-block-button__link {
    display: inline-block;
    padding: 14px 32px;
    background: #2196F3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 24px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.entry-content .wp-block-button .wp-block-button__link:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

/* Outline Button Style */
.entry-content .wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    border: 2px solid #2196F3;
    color: #2196F3;
}

.entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: #2196F3;
    color: #ffffff;
}

/* Gradient Button Style */
.entry-content .wp-block-button.is-style-gradient .wp-block-button__link {
    background: linear-gradient(135deg, #2196F3 0%, #21CBF3 100%);
}

/* Buttons Group */
.entry-content .wp-block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 2em 0;
}

/* ============================================
   SEPARATOR BLOCK
   ============================================ */
.entry-content .wp-block-separator,
.entry-content hr {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 3em auto;
    max-width: 100px;
}

.entry-content .wp-block-separator.is-style-wide {
    max-width: 100%;
}

.entry-content .wp-block-separator.is-style-dots::before {
    content: '···';
    display: block;
    text-align: center;
    font-size: 1.5em;
    letter-spacing: 1em;
    padding-left: 1em;
    color: #666666;
}

[data-theme="dark"] .entry-content .wp-block-separator,
[data-theme="dark"] .entry-content hr {
    border-top-color: #404040;
}

/* ============================================
   SPACER BLOCK
   ============================================ */
.entry-content .wp-block-spacer {
    /* Height set via block attributes */
}

/* ============================================
   COLUMNS BLOCK
   ============================================ */
.entry-content .wp-block-columns {
    margin: 2em 0;
    display: flex;
    gap: 2em;
}

.entry-content .wp-block-column {
    flex: 1;
}

/* ============================================
   GROUP BLOCK
   ============================================ */
.entry-content .wp-block-group {
    margin: 2em 0;
    padding: 2em;
    background: #f8f9fa;
    border-radius: 12px;
}

[data-theme="dark"] .entry-content .wp-block-group {
    background: #2a2a2a;
}

/* ============================================
   VIDEO BLOCK
   ============================================ */
.entry-content .wp-block-video {
    margin: 2em 0;
}

.entry-content .wp-block-video video {
    width: 100%;
    border-radius: 8px;
}

/* ============================================
   AUDIO BLOCK
   ============================================ */
.entry-content .wp-block-audio {
    margin: 2em 0;
}

.entry-content .wp-block-audio audio {
    width: 100%;
}

/* ============================================
   FILE BLOCK
   ============================================ */
.entry-content .wp-block-file {
    margin: 1.5em 0;
    padding: 1.5em;
    background: #f8f9fa;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.entry-content .wp-block-file a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2196F3;
    text-decoration: none;
    font-weight: 600;
}

.entry-content .wp-block-file a:hover {
    text-decoration: underline;
}

.entry-content .wp-block-file .wp-block-file__button {
    padding: 8px 20px;
    background: #2196F3;
    color: #ffffff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

[data-theme="dark"] .entry-content .wp-block-file {
    background: #2a2a2a;
    border-color: #404040;
}

/* ============================================
   EMBED BLOCKS
   ============================================ */
.entry-content .wp-block-embed {
    margin: 2em 0;
}

.entry-content .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.entry-content .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Twitter Embed */
.entry-content .wp-block-embed-twitter {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .entry-content {
        font-size: 16px;
    }

    .entry-content h1 {
        font-size: 2em;
    }

    .entry-content h2 {
        font-size: 1.75em;
    }

    .entry-content h3 {
        font-size: 1.5em;
    }

    .entry-content h4 {
        font-size: 1.25em;
    }

    .entry-content ul,
    .entry-content ol {
        padding-left: 1.5em;
    }

    .entry-content blockquote,
    .entry-content .wp-block-quote {
        padding: 1em 1.5em;
    }

    .entry-content .wp-block-pullquote p {
        font-size: 1.2em;
    }

    .entry-content .wp-block-columns {
        flex-direction: column;
        gap: 1.5em;
    }

    .entry-content .wp-block-media-text {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .entry-content .wp-block-gallery .blocks-gallery-grid,
    .entry-content .wp-block-gallery .wp-block-gallery__inner {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .entry-content table,
    .entry-content .wp-block-table {
        font-size: 0.9em;
    }

    .entry-content table th,
    .entry-content .wp-block-table th,
    .entry-content table td,
    .entry-content .wp-block-table td {
        padding: 10px 12px;
    }
}

/* ============================================
   ALIGNMENT CLASSES
   ============================================ */
.entry-content .alignleft {
    float: left;
    margin: 0.5em 2em 1em 0;
}

.entry-content .alignright {
    float: right;
    margin: 0.5em 0 1em 2em;
}

.entry-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.entry-content .alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.entry-content .alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .entry-content {
        font-size: 12pt;
        line-height: 1.6;
        color: #000;
    }

    .entry-content a {
        color: #000;
        text-decoration: underline;
    }

    .entry-content .wp-block-button {
        display: none;
    }

    .entry-content img {
        max-width: 100%;
        page-break-inside: avoid;
    }
}

/* ============================================
   ADDITIONAL ENHANCEMENTS (Merged from user request)
   ============================================ */

/* ============================================
   TABLE RESPONSIVE WRAPPER
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    margin: 2em 0;
    border-radius: 8px;
    /* Removed box-shadow to avoid "shadow boxes" effect */
    border: 1px solid #e0e0e0;
    /* Add thin border instead for containment */
}

/* Remove margin from table when inside wrapper to prevent double spacing */
.table-wrapper table {
    margin: 0;
    box-shadow: none;
    border-radius: 0;
}

/* ============================================
   CODE COPY BUTTON
   ============================================ */
.code-copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 16px;
    background: #2196F3;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.code-copy-btn:hover {
    background: #1976D2;
}

.code-copy-btn.copied {
    background: #4CAF50;
}

/* ============================================
   IMAGE LIGHTBOX
   ============================================ */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 40px;
}

.image-lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lightbox-close:hover {
    background: #f5f5f5;
    transform: rotate(90deg);
}

/* ============================================
   EXTERNAL LINK INDICATOR
   ============================================ */
.entry-content a.external-link::after {
    content: '↗';
    display: inline-block;
    margin-left: 4px;
    font-size: 0.8em;
    opacity: 0.6;
}

/* ============================================
   FOCUS STYLES
   ============================================ */
.entry-content *:focus {
    outline: 2px solid #2196F3;
    outline-offset: 2px;
}

/* ============================================
   SMOOTH ANIMATIONS
   ============================================ */
.entry-content img,
.entry-content .wp-block-image img {
    transition: transform 0.3s ease;
}

.entry-content img:hover,
.entry-content .wp-block-image img:hover {
    cursor: pointer;
}