@extends('layouts.base') {{-- @section('title', __('labels.case_studies')) --}} @push('css') {{-- /* Image container .case-study-image-container { max-width: 100%; overflow: hidden; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); } /* Responsive image */ .rc-image { width: 100%; height: auto; max-height: 500px; /* Limits maximum height */ object-fit: cover; /* Crops if needed, maintains aspect ratio */ object-position: center; transition: transform 0.3s ease; } /* Hover effect */ .rc-image:hover { transform: scale(1.02); } /* Responsive adjustments */ @media (max-width: 768px) { .rc-image { max-height: 300px; /* Smaller on mobile */ } } @media (max-width: 576px) { .rc-image { max-height: 250px; } .rc-card { padding: 1.5rem !important; } } */ --}} @endpush @section('content') @include('modules.templates.header2', [ 'title' => $caseStudy->title ?? '' , ])
{{--
Ransomware Case Study
--}} @include('modules.templates.detail-image',[ 'id' => $caseStudy->id ?? '', 'title' => $caseStudy->title ?? '', 'imageUrl' => $caseStudy->feature_image_url ?? '', ]) {{-- Ransomware Case Study --}}
{!! html_entity_decode($caseStudy->description ?? '') !!} {{-- {!! $caseStudy->description ?? '' !!} --}}
@include('modules.templates.copyright') @endsection @push('js') @endpush